forked from fsspec/adlfs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·49 lines (45 loc) · 1.39 KB
/
setup.py
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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
setup(
name="adlfs",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Access Azure Datalake Gen1 with fsspec and dask",
url="https://github.com/dask/adlfs/",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
maintainer="Greg Hayes",
maintainer_email="[email protected]",
license="BSD",
keywords=["file-system", "dask", "azure"],
packages=["adlfs"],
python_requires=">3.8",
long_description_content_type="text/markdown",
long_description=open("README.md").read() if exists("README.md") else "",
install_requires=[
"aiohttp",
"azure-core>=1.7.0",
"azure-datalake-store>=0.0.46,<0.1",
"azure-identity",
"azure-storage-blob>=12.5.0",
"fsspec>=2021.10.1",
],
extras_require={
"docs": ["sphinx", "myst-parser", "furo", "numpydoc"],
},
tests_require=["pytest", "docker"],
zip_safe=False,
entry_points={
"fsspec.specs": [
"abfss=adlfs.AzureBlobFileSystem",
],
},
)