forked from tanghaibao/jcvi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from glob import glob
name = "jcvi"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
exec(open("__init__.py").read())
setup(
name=name,
version=__version__,
author=__author__[0],
author_email=__email__,
package_dir={name: '.'},
packages=[name] + ['.'.join((name, x)) for x in find_packages()],
include_package_data=True,
package_data={"jcvi.utils.data": ["*.*"]},
classifiers=classifiers,
zip_safe=False,
license='BSD',
url='http://github.com/tanghaibao/jcvi',
description='Python utility libraries on genome assembly, '\
'annotation and comparative genomics',
long_description=open("README.rst").read(),
install_requires=['biopython', 'numpy', 'matplotlib',
'deap', 'networkx']
)