forked from galaxyproject/bioblend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (60 loc) · 2.01 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
import ast
import os.path
import re
from setuptools import find_packages, setup
# It should be possible to use "from bioblend import get_version", but this may
# try to import some not-yet-installed libraries.
reg = re.compile(r'__version__\s*=\s*(.+)')
with open(os.path.join('bioblend', '__init__.py')) as f:
for line in f:
m = reg.match(line)
if m:
version = ast.literal_eval(m.group(1))
break
with open('README.rst') as f:
long_description = f.read()
setup(
name="bioblend",
version=version,
description="Galaxy and CloudMan API library",
long_description=long_description,
author="Enis Afgan",
author_email="[email protected]",
url="https://bioblend.readthedocs.io/",
project_urls={
"Bug Tracker": "https://github.com/galaxyproject/bioblend/issues",
"Documentation": "https://bioblend.readthedocs.io/",
"Source Code": "https://github.com/galaxyproject/bioblend",
},
python_requires='>=3.6',
install_requires=[
'boto>=2.9.7',
'pyyaml',
'requests>=2.20.0',
'requests-toolbelt>=0.5.1,!=0.9.0',
],
packages=find_packages(exclude=['tests']),
package_data={'bioblend': ['_tests/data/*']},
entry_points={
'console_scripts': [
'bioblend-galaxy-tests = bioblend._tests.pytest_galaxy_test_wrapper:main [testing]'
]
},
extras_require={
'testing': ["pytest"],
},
license='MIT',
platforms="Posix; MacOS X; Windows",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
)