-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.4 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
from setuptools import find_packages, setup
from glob import glob
classes = """
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ('Biom utility scripts.')
setup(name='biom-util',
version='0.0.2',
license='BSD-3-Clause',
description=description,
author_email="jamietmorton@gmail.com",
maintainer_email="jamietmorton@gmail.com",
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'biom-format',
'pandas>=1.0.0',
# if utilizing the qiime2 API you also need a mininum of
# https://github.com/qiime2/qiime2.git
# https://github.com/qiime2/q2-sample-classifier.git
# https://github.com/qiime2/q2-types.git
],
classifiers=classifiers,
package_data={},
scripts=glob('scripts/*'))