-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.42 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
from setuptools import setup, find_packages
from fuggle_version import __version__
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
setup(
name="fuggle",
version=__version__,
packages=find_packages(),
description="Fugue for Kaggle users",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="Apache-2.0",
author="Han Wang",
author_email="[email protected]",
keywords="fugue kaggle sql spark dask pandas",
url="http://github.com/fugue-project/fuggle",
install_requires=[
"fugue[spark,dask,sql]==0.6.3",
"tune[all]==0.0.9.dev1",
"notebook",
"kaggle",
"seaborn",
"qpd",
"dask[dataframe]",
"pandavro",
"psutil",
],
extras_require={
"dasksql": ["dask-sql!=0.3.4"],
"blazing": ["fugue-blazing==0.0.3"],
},
classifiers=[
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"Development Status :: 5 - Production/Stable",
"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 :: Only",
],
python_requires=">=3.6",
)