-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·45 lines (37 loc) · 1.23 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
#!/usr/bin/env python
from setuptools import setup
import os
def version():
setupDir = os.path.dirname(os.path.realpath(__file__))
versionFile = open(os.path.join(setupDir, 'refinem', 'VERSION'))
return versionFile.readline().strip()
if __name__ == '__main__':
dirName = os.path.dirname(__file__)
if dirName and os.getcwd() != dirName:
os.chdir(dirName)
#f = open('README.rst', 'rt')
#long_description = f.read()
#f.close()
setup(
name='refinem',
version=version(),
author='Donovan Parks',
author_email='donovan.parks@gmail.com',
packages=['refinem', 'refinem.plots'],
scripts=['bin/refinem'],
package_data={'refinem' : ['VERSION', './distributions/*.txt','./data_files/hmms/*.hmm']},
url='http://pypi.python.org/pypi/refinem/',
license='GPL3',
description='A toolbox for improving population genomes.',
#long_description=long_description,
install_requires=[
"numpy>=1.9.0",
"scipy",
"dendropy",
"matplotlib>=1.4.0",
"biolib>=0.1.6",
"jinja2>=2.7.3",
"mpld3>=0.3",
"pysam",
"weightedstats>=0.4.1"],
)