forked from ydataai/ydata-profiling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (71 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from pathlib import Path
from setuptools import find_packages, setup
# Read the contents of README file
source_root = Path(".")
with (source_root / "README.md").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 = "2.12.0"
with (source_root / "src" / "pandas_profiling" / "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-profiling",
version=version,
author="Simon Brugman",
author_email="pandasprofiling@gmail.com",
packages=find_packages("src"),
package_dir={"": "src"},
url="https://github.com/pandas-profiling/pandas-profiling",
license="MIT",
description="Generate profile report for pandas DataFrame",
python_requires=">=3.6",
install_requires=requirements,
extras_require={
"notebook": [
"jupyter-client>=6.0.0",
"jupyter-core>=4.6.3",
"ipywidgets>=7.5.1",
],
},
package_data={
"pandas_profiling": ["py.typed"],
},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"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",
"Topic :: Scientific/Engineering",
"Framework :: IPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="pandas data-science data-analysis python jupyter ipython",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"pandas_profiling = pandas_profiling.controller.console:main"
]
},
options={"bdist_wheel": {"universal": True}},
)