-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.py
88 lines (85 loc) · 2.2 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
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as file:
long_description = file.read()
setuptools.setup(
name="reliability",
version="0.8.16",
description="Reliability Engineering toolkit for Python",
author="Matthew Reid",
author_email="[email protected]",
license="LGPLv3",
url="https://reliability.readthedocs.io/en/latest/",
project_urls={
'Documentation': 'https://reliability.readthedocs.io/en/latest/',
'Source Code': 'https://github.com/MatthewReid854/reliability',
'Donate': 'https://reliability.readthedocs.io/en/latest/How%20to%20donate%20to%20the%20project.html'
},
keywords=[
"reliability",
"engineering",
"RAM",
"weibull",
"lognormal",
"exponential",
"beta",
"gamma",
"normal",
"loglogistic",
"gumbel",
"extreme",
"value",
"kaplan meier",
"kaplan-meier",
"survival",
"analysis",
"censored",
"data",
"lifelines",
"probability",
"distribution",
"distributions",
"fit",
"fitting",
"curve",
"quality",
"ALT",
"accelerated",
"life",
"testing",
"MCF",
"mean",
"cumulative",
"CIF",
"DS",
"ZI",
"defective",
"subpopulation",
"zero",
"inflated",
"DSZI",
"likelihood",
],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
],
install_requires=[
"autograd>=1.5",
"scipy>=1.10.1",
"numpy>=1.24.2",
"matplotlib>=3.7.1",
"pandas>=2.0.1",
"autograd-gamma>=0.5.0",
"mplcursors>=0.5.2"
],
python_requires=">=3.8",
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*"]
),
)