forked from pydna-group/pydna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 loc) · 1.87 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
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import versioneer
versioneer.VCS = 'git'
versioneer.versionfile_source = 'pydna/_version.py'
versioneer.versionfile_build = 'pydna/_version.py'
versioneer.tag_prefix = '' # tags are like 1.2.0
versioneer.parentdir_prefix = '' # dirname like 'myproject-1.2.0'
# Read author etc..
for line in open('pydna/__init__.py'):
if line.startswith('__') and not line.startswith('__version') and not line.startswith('__long'):
exec(line.strip())
from setuptools import setup
import textwrap, sys
setup( name='pydna',
author =__author__,
author_email =__email__,
version=versioneer.get_version()[:5],
cmdclass=versioneer.get_cmdclass(),
packages=['pydna',
'pydna.py_rstr_max',],
url='http://pypi.python.org/pypi/pydna/',
license='LICENSE.txt',
description='''Contains classes and code for representing double
stranded DNA and functions for simulating homologous
recombination between DNA molecules.''',
long_description=open('README.rst').read(),
install_requires =[
"biopython",
"networkx",
"appdirs",
"prettytable",],
test_suite="run_tests.load_my_tests",
zip_safe = False,
keywords = "bioinformatics",
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Bio-Informatics',]
)