This repository has been archived by the owner on May 19, 2020. It is now read-only.
forked from inodb/revmut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.67 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
48
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys, os
import versioneer
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(name='revmut',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="REVertant MUTation finder",
long_description=read("README.rst"),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='Python revertant mutation finder HGVS',
author='Ino de Bruijn',
author_email='[email protected]',
url='https://github.com/inodb/revmut',
license="MIT",
include_package_data=True,
packages=find_packages(exclude=['test*']),
install_requires=['pandas>=0.16.1',
'biopython>=1.65',
'sufam==0.4',
],
dependency_links=[
'https://github.com/counsyl/hgvs/archive/aebe5bd9683f4b5937fd653ce4b13fcd4f3ebb10.zip#egg=pyhgvs'
],
entry_points={
'console_scripts': [
'revmut-find = revmut.find:main'
'revmut-verify = revmut.verify:main'
]
},
)