forked from dansondergaard/tmhmm.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (31 loc) · 911 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
30
31
32
33
34
35
36
37
38
from setuptools import setup, Extension
import numpy
setup(
name='tmhmm.py',
version='1.3.1',
author='Dan Søndergaard',
author_email='[email protected]',
description='A transmembrane helix finder.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/dansondergaard/tmhmm.py/',
packages=['tmhmm'],
package_data={'tmhmm': ['TMHMM2.0.model']},
zip_safe=False,
python_version='>=3.5',
setup_requires=['setuptools>=18.0', 'numpy>=1.9', 'cython'],
install_requires=['numpy>=1.9'],
extras_require={
'plotting': ['matplotlib'],
},
entry_points={
'console_scripts': ['tmhmm=tmhmm.cli:cli'],
},
ext_modules=[
Extension(
'tmhmm.hmm',
sources=['tmhmm/hmm.pyx'],
include_dirs=[numpy.get_include()],
),
],
)