-
Notifications
You must be signed in to change notification settings - Fork 370
/
setup.py
44 lines (39 loc) · 1.56 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
from setuptools import setup, find_packages
from os import path
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(HERE, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(path.join(HERE, "requirements.txt")) as fp:
install_requires = fp.read()
version_dict = {}
with open(path.join(HERE, "lux/_version.py")) as fp:
exec(fp.read(), {}, version_dict)
version = version_dict["__version__"]
setup(
name="lux-api", # PyPI Name (pip install [name])
version=version, # Required
description="A Python API for Intelligent Data Discovery",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lux-org/lux",
author="Doris Jung-Lin Lee",
author_email="[email protected]",
license="Apache-2.0 License",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
keywords=["Visualization", "Analytics", "Data Science", "Data Analysis"],
include_data_package=True,
packages=find_packages(), # Required
python_requires=">=3.5",
install_requires=install_requires,
extras_require={"test": ["pytest"]},
)