-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.13 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
import numpy
from Cython.Build import cythonize
from setuptools import setup, Extension
ext = [
Extension(
"pyTMHMM.hmm",
["pyTMHMM/hmm.pyx"],
)
]
setup(
name="pyTMHMM",
version="1.3.6",
license="MIT License",
author="Brian Osborne",
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/bosborne/pyTMHMM/",
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": ["pyTMHMM=pyTMHMM.cli:cli"],
},
packages=["pyTMHMM"],
package_data={"pyTMHMM": ["TMHMM2.0.model","hmm.pyx"]},
include_dirs=[numpy.get_include(),"."],
ext_modules=cythonize(ext),
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
],
)