-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (42 loc) · 1.33 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
# coding: utf-8
from __future__ import unicode_literals
import os
import io
from setuptools import setup, find_packages
def read(fname):
return io.open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
setup(
name='co',
version='0.2.0',
packages=find_packages(exclude=['*tests*']),
url='http://co.readthedocs.org/en/latest/',
license='MIT',
author='Lars Schoening',
author_email='[email protected]',
description='Python library for making and tracking mutated copies of DNA components',
long_description=read('README.rst'),
test_suite='nose.collector',
install_requires=[
'biopython>=1.63',
'six>=1.5.2',
'intervaltree>=2.0.4'
],
setup_requires=[
'nose>=1.1.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
extras_require={
'docs': ['Sphinx', 'sphinx-rtd-theme'],
}
)