-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.15 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.15 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
import setuptools
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setuptools.setup(
name="capability",
version="0.0.1rc5",
author="Alexandre Baharov",
author_email="alex.baharov@gmail.com",
license="LGPLv3",
description="A collecton of tools for capability analysis for Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alebaho/capability",
keywords=[
"capability",
"Cpk",
"Cp",
"Ppk",
"Pp",
"dpm",
"yield",
"SigmaLevel",
],
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
"scipy>=1.5.2",
"numpy>=1.19.2",
"matplotlib>=3.3.2",
"pandas>=1.0.1",
"seaborn>=0.11.0",
],
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "*.notebooks", "*.notebooks.*", ".gitignore"]
),
python_requires='>=3.6',
)