-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (48 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
54
55
from setuptools import setup, find_packages
from sys import argv
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open("README.rst") as rfile:
readme = rfile.read()
setup_requirements = []
# prevent pytest-runner from being installed on every invocation
if {'pytest', 'test', 'ptr'}.intersection(argv):
setup_requirements.append("pytest-runner")
setup(
name="gsmodutils",
version="0.0.4",
description="Utilities for the management and testing of genome scale models in a cross platform, open manner.",
long_description=readme,
long_description_content_type='text/x-rst',
zip_safe=False,
author="James Gilbert",
install_requires=requirements,
author_email="james.gilbert@nottingham.ac.uk",
url="",
license="Apache",
packages=find_packages(),
entry_points={
'console_scripts': [
'scrumpy_to_cobra=gsmodutils.utils.scrumpy:scrumpy_to_cobra',
'gsmodutils=gsmodutils.cli:cli',
],
},
setup_requires=setup_requirements,
tests_require=['pytest'],
include_package_data=True,
classifiers=[
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
platforms="GNU/Linux, Mac OS X >= 10.7, Microsoft Windows >= 7",
)