forked from donovan-h-parks/GeneTreeTk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 822 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 822 Bytes
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
from setuptools import setup
import os
def version():
setupDir = os.path.dirname(os.path.realpath(__file__))
versionFile = open(os.path.join(setupDir, 'genetreetk', 'VERSION'))
return versionFile.readline().strip()
setup(
name='GeneTreeTk',
version=version(),
author='Donovan Parks',
author_email='donovan.parks@gmail.com',
packages=['genetreetk'],
scripts=['bin/genetreetk'],
package_data={'genetreetk' : ['VERSION']},
url='http://pypi.python.org/pypi/genetreetk/',
license='GPL3',
description='A toolbox for working with gene trees.',
long_description=open('README.md').read(),
install_requires=[
"numpy >= 1.8.0",
"biolib @ git+https://git@github.com/nickgreensgithub/biolib.git",
"dendropy >= 4.0.0",
"extern"
],
)