-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
46 lines (44 loc) · 1.21 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="qpcr",
version="4.1.3",
author="Noah H. Kleinschmidt",
author_email="[email protected]",
description="A python package to perform analysis of qPCR data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NoahHenrikKleinschmidt/qpcr.git",
packages=[
"qpcr",
"qpcr.main",
"qpcr.stats",
"qpcr.Plotters",
"qpcr.Readers",
"qpcr.Parsers",
"qpcr.Filters",
"qpcr.Curves",
"qpcr.Pipes",
"qpcr.defaults",
"qpcr._auxiliary",
"qpcr._auxiliary.warnings",
],
install_requires=[
"numpy",
"pandas",
"scipy",
"matplotlib",
"seaborn",
"statsmodels",
"plotly",
"statannotations",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
python_requires=">=3.8",
)