-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
60 lines (54 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
from pathlib import Path
from setuptools import find_packages, setup
source_root = Path(".")
with (source_root / "README.rst").open(encoding="utf-8") as f:
long_description = f.read()
# Read the requirements
with (source_root / "requirements.txt").open(encoding="utf8") as f:
requirements = f.readlines()
version = "0.0.4"
with (source_root / "src" / "pandas_visual_analysis" / "version.py").open(
"w", encoding="utf-8"
) as f:
f.writelines(
[
'"""This file is auto-generated by setup.py, please do not alter."""\n',
f'__version__ = "{version}"\n',
"",
]
)
setup(
name="pandas-visual-analysis",
version=version,
packages=find_packages("src"),
package_dir={"": "src"},
url="https://github.com/meffmadd/pandas-visual-analysis",
license="MIT License",
author="Matthias Matt",
author_email="[email protected]",
description="A package for interactive visual analysis in Jupyter notebooks.",
long_description=long_description,
long_description_content_type="text/x-rst",
python_requires=">=3.6",
install_requires=requirements,
extras_require={
"notebook": ["jupyter-client>=6.0.0", "jupyter-core>=4.6.3"],
},
keywords="pandas data-science visualization data-analysis brushing linked-brushing python jupyter ipython",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Framework :: IPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)