-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·47 lines (40 loc) · 1.54 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from isafe import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = """A program for identifying a favored mutation in positive selective sweep.
It enables researchers to accurately pinpoint the favored mutation in a large region (∼5 Mbp)
by using a statistic derived solely from population genetics signals."""
requirements = ['numpy>=1.9.0', 'pandas>=0.18.0']
test_requirements = []
setup(
name='isafe',
version=__version__,
description="A program for identifying a favored mutation in positive selective sweep.",
long_description=readme + '\n\n',
author="Ali Akbari et al",
author_email='Ali_Akbari@hms.harvard.edu',
url='https://github.com/alek0991/iSAFE',
packages=['isafe'],
include_package_data=True,
install_requires=requirements,
entry_points = {
'console_scripts': ['isafe=isafe.isafe:run'],
},
license="BSD-3-Clause",
zip_safe=False,
keywords='isafe',
classifiers=["Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"],
test_suite='tests',
tests_require=test_requirements
)