-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (35 loc) · 1.17 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
from setuptools import find_packages, setup
import numpy as np
classes = """
Development Status :: 1 - Pre-Alpha
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
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='bloom_analyses',
version='1.0',
license='BSD-3-Clause',
description='The Bloom Filter',
long_description='The Bloom Filter',
author="bloom development team",
author_email="jamietmorton@gmail.com",
maintainer="bloom development team",
maintainer_email="jamietmorton@gmail.com",
packages=find_packages(),
include_dirs=[np.get_include()],
install_requires=[
'scikit-bio', 'numpy', 'biom-format'
],
classifiers=classifiers,
package_data={
}
)