This repository has been archived by the owner on May 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
68 lines (65 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import os
from setuptools import setup, find_packages
# Read long description from file
with open("README.md", "r") as fh:
long_description = fh.read()
# Read requirements from file
install_requires = []
root_dir = os.path.dirname(os.path.realpath(__file__))
req = root_dir + '/requirements.txt'
if os.path.isfile(req):
with open(req) as f:
install_requires = f.read().splitlines()
setup(
name="TEStribute",
version="0.2.1",
description="Task distribution for GA4GH TES instances",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/elixir-europe/TEStribute",
author="ELIXIR Cloud & AAI",
author_email="[email protected]",
maintainer="Alexander Kanitz",
maintainer_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Typing :: Typed",
],
entry_points={
'console_scripts': [
'testribute = TEStribute.cli:main',
],
},
keywords=(
'ga4gh tes elixir rest api app openapi python task distribution'
),
project_urls={
"Repository": "https://github.com/elixir-europe/TEStribute",
"ELIXIR Cloud & AAI": "https://elixir-europe.github.io/cloud/",
"Tracker": "https://github.com/elixir-europe/TEStribute/issues",
},
packages=find_packages(),
install_requires=install_requires,
python_requires='~=3.6',
include_package_data=True,
setup_requires=[
"setuptools_git == 1.2",
],
)