-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (48 loc) · 1.87 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Based on template found at: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
readme = open('README.md').read()
license = open('License.txt').read()
reqs = [i.strip() for i in open('requirements.txt').readlines() if i.strip()]
scripts = ('test-ot-ws', )
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
setup(
name='test-ot-ws',
version='0.2.0',
description='Library for testing whether or not the Open Tree of Life web services are functioning correctly',
long_description=readme,
url='https://github.com/OpenTreeOfLife/test-ot-ws',
license=license,
author='Mark T. Holder and see CONTRIBUTORS.txt file',
author_email='[email protected]',
py_modules=['otwstest'],
install_requires=reqs,
packages=['otwstest',
'otwstest.schema',
'otwstest.schema.taxonomy',
'otwstest.schema.tnrs',
'otwstest.taxonomy',
'otwstest.taxonomy.taxon',
'otwstest.taxonomy.flags',
'otwstest.taxonomy.mrca',
'otwstest.taxonomy.subtree',
'otwstest.taxonomy.about',
'otwstest.tnrs',
],
classifiers=classifiers,
include_package_data=True,
scripts=scripts,
zip_safe=False
)