forked from Advestis/transparentpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (70 loc) · 1.46 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[metadata]
name = transparentpath
description = A class that allows one to use a path in a local file system or a gcs file system (more or less) in almost the same way one would use a pathlib.Path object.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Advestis/transparentpath
author = Advestis
author_email = [email protected]
license = GPLv3
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Operating System :: Unix
Programming Language :: Python :: 3.8
project_urls =
Bug Tracker = https://github.com/Advestis/transparentpath/issues
Documentation = https://advestis.github.io/transparentpath
Source Code = https://github.com/Advestis/transparentpath/
[options]
packages = find:
install_requires =
gcsfs
fsspec
setuptools
datetime
python_requires = >=3.9
include_package_data = True
[options.extras_require]
dask=
dask
distributed
excel=
pandas
xlrd
openpyxl
hdf5=
h5py
tables
joblib=
joblib
numpy
json=
numpy
pandas
pandas=
pandas
parquet=
numpy
pandas
pyarrow
fastparquet
all=
dask
distributed
pandas
xlrd
openpyxl
h5py
tables
joblib
numpy
pyarrow
fastparquet
[versioneer]
VCS = git
style = pep440
versionfile_source = transparentpath/_version.py
versionfile_build = transparentpath/_version.py
tag_prefix = v
parentdir_prefix = transparentpath-