forked from veg/hivclustering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 769 Bytes
/
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
#!/usr/bin/env python3
import sys
from os.path import abspath, join, split
from setuptools import setup
sys.path.insert(0, join(split(abspath(__file__))[0], 'lib'))
setup(name='hivclustering',
version="1.6.8",
description='HIV molecular clustering tools',
author='Sergei Kosakovsky Pond',
author_email='[email protected]',
url='http://github.com/veg/hivclustering',
license='MIT License',
packages=['hivclustering'],
package_data={'hivclustering': [
'data/HBL/*.bf',
]},
extras_require={
'edgefiltering': ['bioext >= 0.21.0','hyphy-python >= 0.1.11','hppy >= 0.9.9'],
},
scripts=[
'scripts/hivnetworkcsv',
'scripts/TNS',
'scripts/hivnetworkannotate'
],
)