|
16 | 16 | version_file.write(f"__version__ = '{version}'")
|
17 | 17 |
|
18 | 18 | setup(
|
19 |
| - name="ydata-profiling", |
20 | 19 | version=version,
|
21 |
| - author="YData Labs Inc", |
22 |
| - |
23 |
| - url="https://github.com/ydataai/ydata-profiling", |
24 |
| - license="MIT", |
25 |
| - description="Generate profile report for pandas DataFrame", |
26 |
| - python_requires=">=3.7, <3.13", |
27 |
| - install_requires=requirements, |
28 |
| - package_data={ |
29 |
| - "ydata_profiling": ["py.typed"], |
30 |
| - }, |
31 |
| - classifiers=[ |
32 |
| - "Development Status :: 5 - Production/Stable", |
33 |
| - "Topic :: Software Development :: Build Tools", |
34 |
| - "License :: OSI Approved :: MIT License", |
35 |
| - "Environment :: Console", |
36 |
| - "Operating System :: OS Independent", |
37 |
| - "Intended Audience :: Science/Research", |
38 |
| - "Intended Audience :: Developers", |
39 |
| - "Intended Audience :: Financial and Insurance Industry", |
40 |
| - "Intended Audience :: Healthcare Industry", |
41 |
| - "Topic :: Scientific/Engineering", |
42 |
| - "Framework :: IPython", |
43 |
| - "Programming Language :: Python :: 3", |
44 |
| - "Programming Language :: Python :: 3.7", |
45 |
| - "Programming Language :: Python :: 3.8", |
46 |
| - "Programming Language :: Python :: 3.9", |
47 |
| - "Programming Language :: Python :: 3.10", |
48 |
| - "Programming Language :: Python :: 3.11", |
49 |
| - "Programming Language :: Python :: 3.12", |
50 |
| - ], |
51 |
| - keywords="pandas data-science data-analysis python jupyter ipython", |
52 | 20 | long_description=long_description,
|
53 | 21 | long_description_content_type="text/markdown",
|
54 | 22 | options={"bdist_wheel": {"universal": True}},
|
|
0 commit comments