-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (58 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
from codecs import open as codecs_open
from setuptools import setup, find_packages
from warnings import warn
# Get the long description from the relevant file
with codecs_open('README.md', encoding='utf-8') as f:
long_description = f.read()
try:
import msprime #NOQA
except ImportError:
warn("`msprime` not present and must be installed")
try:
import simuPOP #NOQA
except ImportError:
warn("`simuPOP` not present and must be installed")
setup(name='ftprime',
version='0.0.6-rc',
description=u"Simulate a `msprime` tree sequence in forward time",
long_description=long_description,
keywords=['tree sequence', 'forward simulation', 'individual-based model',
'population genetics'],
author=u"Jaime Ashander",
author_email='[email protected]',
url='https://github.com/ashander/ftprime',
license='GPL3',
packages=find_packages(exclude=['writeups', 'ez_setup', 'examples',
'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'msprime',
'numpy',
],
extras_require={
'dev': [
'pytest',
'pytest-cov',
'sphinx',
'recommonmark',
'sphinx_rtd_theme',
'six',
],
'recomb_collector': [
'simuPOP>=1.1.8.3',
]
},
platforms=["POSIX"],
classifiers=['Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 ' +
'or later (GPLv3+)'
'Operating System :: POSIX',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Science/Research',
],
)