-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (48 loc) · 1.87 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
50
51
from setuptools import setup, find_packages
from fugue_cloudprovider_version import __version__
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
setup(
name="fugue-cloudprovider",
version=__version__,
packages=[x for x in find_packages() if x.startswith("fugue")],
description="A collection of utils for Fugue to run on cloud providers",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="Apache-2.0",
author="The Fugue Development Team",
author_email="[email protected]",
keywords="fugue aws gcp azure databricks",
url="http://github.com/fugue-project/fugue-cloudprovider",
install_requires=[
"fugue>=0.8.0",
],
extras_require={
"aws": ["boto3", "fs-s3fs"],
"gcp": ["fs-gcsfs"],
"databricks": ["databricks-connect", "databricks-cli"],
"coiled": ["coiled>=0.2.24", "dask[dataframe,distributed]"],
"anyscale": ["fugue[ray]", "anyscale"],
},
entry_points={
"fugue.plugins": [
"databricks = fugue_databricks.registry:register[databricks]",
"coiled = fugue_coiled.registry:register[coiled]",
"anyscale = fugue_anyscale.registry:register[anyscale]",
]
},
classifiers=[
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.6",
)