forked from fsspec/adlfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (25 loc) · 754 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (25 loc) · 754 Bytes
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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
setup(
name="adlfs",
version="0.1.2",
description="Access Azure Datalake Gen1 with fsspec and dask",
url="https://github.com/hayesgb/adlfs/",
maintainer="Greg Hayes",
maintainer_email="hayesgb@gmail.com",
license="BSD",
keywords=["file-system", "dask", "azure"],
packages=["adlfs"],
long_description_content_type="text/markdown",
long_description=open("README.md").read() if exists("README.md") else "",
install_requires=[
"azure-datalake-store>=0.0.46,<0.1",
"azure-storage-blob>=2.1.0,<3.0.0",
"fsspec>=0.6.0,<1.0",
],
tests_require=[
"pytest>5.0,<6.0",
],
zip_safe=False,
)