-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (23 loc) · 797 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
#!/usr/bin/env python3.2
import sys
from os.path import abspath, join, split
from setuptools import setup
sys.path.insert(0, join(split(abspath(__file__))[0], 'lib'))
from hivclustering import __version__ as _hivclustering_version
setup(name='hivclustering',
version=_hivclustering_version,
description='HIV molecular clustering tools',
author='Sergei Kosakovsky Pond',
author_email='[email protected]',
url='http://github.com/spond/hivclustering',
license='MIT License',
packages=['hivclustering'],
package_dir={'': 'lib'},
package_data={'hivclustering': [
'data/HBL/*.bf',
]},
data_files=[('/usr/local/bin', [
'bin/hivnetworkcsv', 'bin/networkbuild.py', 'bin/TNS'
])],
requires=['hppy']
)