-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
43 lines (42 loc) · 1.09 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
from setuptools import find_packages
from setuptools import setup
setup(
name="alluxiofs",
version="1.0.3",
description="Alluxio Fsspec provides Alluxio filesystem spec implementation.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/fsspec/alluxiofs",
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
zip_safe=False,
install_requires=[
# Alluxio fs dependencies
"fsspec",
# Alluxio client dependencies
"aiohttp",
"decorator",
"humanfriendly",
"requests",
"etcd3",
"mmh3",
"sortedcontainers",
"protobuf>=3.20.0,<3.21.0",
],
extras_require={
"tests": [
"pytest",
"pytest-aiohttp",
"ray",
"pyarrow",
]
},
python_requires=">=3.8",
maintainer="Lu Qiu",
maintainer_email="[email protected]",
entry_points={
"fsspec.specs": [
"alluxio=alluxiofs.AlluxioFileSystem",
],
},
)