-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
135 lines (126 loc) · 4.06 KB
/
setup.py
File metadata and controls
135 lines (126 loc) · 4.06 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="distfit-pro",
version="1.0.0",
author="Ali Sadeghi Aghili",
author_email="alisadeghiaghili@gmail.com",
description="Professional distribution fitting library with 25 distributions, GOF tests, bootstrap CI, and multilingual support",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alisadeghiaghili/py-distfit-pro",
project_urls={
"Documentation": "https://github.com/alisadeghiaghili/py-distfit-pro/docs",
"Source": "https://github.com/alisadeghiaghili/py-distfit-pro",
"Tracker": "https://github.com/alisadeghiaghili/py-distfit-pro/issues",
"Changelog": "https://github.com/alisadeghiaghili/py-distfit-pro/blob/main/CHANGELOG.md",
},
packages=find_packages(exclude=["tests", "tests.*", "docs", "examples"]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Statistics",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Typing :: Typed",
"Natural Language :: English",
"Natural Language :: Persian",
"Natural Language :: German",
],
python_requires=">=3.8",
install_requires=[
# Core numerical
"numpy>=1.20.0",
"scipy>=1.7.0",
"pandas>=1.3.0",
# Visualization
"matplotlib>=3.3.0",
"seaborn>=0.11.0",
"plotly>=5.0.0",
# Parallel processing
"joblib>=1.0.0",
# Progress bars
"tqdm>=4.60.0",
# RTL text support (Persian/Arabic/Hebrew)
"arabic-reshaper>=2.1.0",
"python-bidi>=0.4.2",
],
extras_require={
# Development dependencies
"dev": [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=0.950",
"sphinx>=4.0.0",
"sphinx_rtd_theme>=1.0.0",
"myst-parser>=0.18.0",
],
# Optional statistical tests
"stats": [
"statsmodels>=0.12.0",
],
# All optional dependencies
"all": [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=0.950",
"sphinx>=4.0.0",
"sphinx_rtd_theme>=1.0.0",
"myst-parser>=0.18.0",
"statsmodels>=0.12.0",
],
},
include_package_data=True,
package_data={
"distfit_pro": [
"locales/*.json",
"locales/**/*.json",
],
},
keywords=[
# Core functionality
"statistics",
"distribution fitting",
"probability distributions",
"parameter estimation",
# Methods
"maximum likelihood",
"method of moments",
"goodness of fit",
"bootstrap",
"confidence intervals",
# Advanced features
"diagnostics",
"weighted data",
"model selection",
"AIC",
"BIC",
# Features
"multilingual",
"visualization",
"data science",
"statistical analysis",
"data analysis",
],
zip_safe=False,
entry_points={
"console_scripts": [
# Add CLI tools if needed in future
],
},
)