-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·47 lines (43 loc) · 1.82 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
from setuptools import find_packages, setup
import covigator
# parses requirements from file
with open("requirements.txt") as f:
required = f.read().splitlines()
with open("README.md", "r") as f:
long_description = f.read()
# Build the Python package
setup(
name="covigator",
version=covigator.VERSION,
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"covigator-ena-accessor=covigator.command_line:ena_accessor",
"covigator-covid19portal-accessor=covigator.command_line:covid19_portal_accessor",
"covigator-ena-downloader=covigator.command_line:ena_downloader",
"covigator-processor=covigator.command_line:processor",
"covigator-dashboard=covigator.dashboard.dashboard:main",
"covigator-pipeline=covigator.command_line:pipeline",
"covigator-precompute=covigator.command_line:precompute_queries",
"covigator-cooccurrence-matrix=covigator.command_line:cooccurrence"
],
},
author_email="patrick.sorn@tron-mainz.de",
author="TRON - Translational Oncology at the University Medical Center of the Johannes Gutenberg University Mainz "
"- Computational Medicine group",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
requires=[],
install_requires=required,
setup_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.8",
],
)