forked from ML-Bioinfo-CEITEC/genomic_benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.7 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="genomic_benchmarks",
version="0.0.9",
description="Genomic Benchmarks",
long_description=long_description,
long_description_content_type="text/markdown",
author="RBP Bioinformatics",
author_email="[email protected]",
license="Apache License 2.0",
keywords=["bioinformatics", "genomics", "data"],
url="https://github.com/ML-Bioinfo-CEITEC/genomic_benchmarks",
packages=find_packages("src"),
package_dir={"": "src"},
scripts=[],
# setup_requires=['pytest-runner'], setup_requires deprecated in v58.3.0
install_requires=[
"biopython>=1.79",
"requests>=2.23.0",
"pip>=20.0.1",
"numpy>=1.17.0",
"pandas>=1.1.4",
"tqdm>=4.41.1",
"pyyaml>=5.3.1",
'gdown>=4.2.0',
"yarl",
#'papermill>=2.3.0',
#'tensorflow>=2.6.0',
#'jupyter>=1.0.0',
#'torch>=1.9.0',
],
tests_require=["pytest"],
include_package_data=True,
package_data={},
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",
],
)