-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
53 lines (47 loc) · 1.79 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
52
53
"""Package setup."""
from pathlib import Path
from setuptools import setup, find_packages
root_dir = Path(__file__).parent.resolve()
exec(open(root_dir / "trs_filer" / "version.py").read())
file_name = root_dir / "README.md"
with open(file_name, "r") as _file:
long_description = _file.read()
install_requires = []
req = root_dir / 'requirements.txt'
with open(req, "r") as _file:
install_requires = _file.read().splitlines()
setup(
name="trs-filer",
version=__version__, # noqa: F821
author="ELIXIR Cloud & AAI",
author_email="[email protected]",
maintainer="Kushagra Nagori",
maintainer_email="[email protected]",
description="Lightweight, flexible Flask/Gunicorn-based \
GA4GH TRS implementation",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License 2.0",
url="https://github.com/elixir-cloud-aai/trs-filer.git",
packages=find_packages(),
keywords=(
'ga4gh trs elixir 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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
project_urls={
"Repository": "https://github.com/elixir-cloud-aai/trs-filer",
"ELIXIR Cloud & AAI": "https://elixir-europe.github.io/cloud/",
"Tracker": "https://github.com/elixir-cloud-aai/trs-filer/issues",
},
install_requires=install_requires,
)