-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
47 lines (41 loc) · 1.67 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
"""Package setup."""
from pathlib import Path
from setuptools import setup, find_packages
root_dir = Path(__file__).parent.resolve()
with open(root_dir / "pro_tes" / "version.py", encoding="utf-8") as _file:
exec(_file.read()) # pylint: disable=exec-used
with open(root_dir / "README.md", encoding="utf-8") as _file:
LONG_DESCRIPTION = _file.read()
with open(root_dir / "requirements.txt", encoding="utf-8") as _file:
INSTALL_REQUIRES = _file.read().splitlines()
setup(
name="pro-tes",
version=__version__, # noqa: F821 # pylint: disable=undefined-variable
license="Apache License 2.0",
description="Proxy/gateway GA4GH TES service",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="ELIXIR Cloud & AAI",
author_email="[email protected]",
url="https://github.com/elixir-cloud-aai/proTES.git",
project_urls={
"Repository": "https://github.com/elixir-cloud-aai/proTES",
"ELIXIR Cloud & AAI": "https://elixir-cloud.dcc.sib.swiss/",
"Tracker": "https://github.com/elixir-cloud-aai/proTES/issues",
},
packages=find_packages(),
keywords=(
"ga4gh tes proxy rest restful api app server openapi "
"swagger mongodb python flask"
),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
],
install_requires=INSTALL_REQUIRES,
setup_requires=["setuptools_git>=1.2"],
)