-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
46 lines (38 loc) · 1.29 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = ["reframed", "pandas"]
test_requirements = requirements + ['cplex']
script_list = [
"scripts/smetana",
]
setup(
author="Daniel Machado",
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: Apache Software License',
],
description="Species METabolic interaction ANAlysis (SMETANA) is a python-based command line tool to analyse microbial communities.",
scripts=script_list,
install_requires=requirements,
license="Apache Software License 2.0",
long_description=readme,
include_package_data=True,
keywords='smetana',
name='smetana',
test_suite='tests',
tests_require=test_requirements,
packages=find_packages(include=['smetana']),
setup_requires=['setuptools_scm'],
url='https://github.com/cdanielmachado/smetana',
version='1.2.0',
zip_safe=False,
)