-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (51 loc) · 1.7 KB
/
setup.py
File metadata and controls
55 lines (51 loc) · 1.7 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
from setuptools import find_packages, setup
requirements = [
'numpy>=1.23',
'pandas>=1.5',
'matplotlib>=3.6',
'seaborn>=0.12',
'biopython>=1.8',
'scikit-learn>=1.2',
'statsmodels>=0.13',
'typer>=0.20',
]
test_requirements = [
'pytest>=3',
]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='genbenchQC',
version='1.1.0',
description='Genomic Benchmarks QC: Automated Quality Control for Genomic Machine Learning Datasets',
long_description=long_description,
long_description_content_type="text/markdown",
author="Katarina Gresova",
author_email='[email protected]',
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=requirements,
extras_require={
"develop": test_requirements,
},
tests_require=["pytest"],
test_suite='tests',
entry_points='''
[console_scripts]
genbenchQC=genbenchQC.cli:main
''',
keywords=["genomic benchmarks", "deep learning", "machine learning",
"computational biology", "bioinformatics", "genomics", "quality control"],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Development Status :: 3 - Alpha",
# Define that your audience are developers
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
# Specify which pyhton versions that you want to support
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)