-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (41 loc) · 1.8 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
""" setup.py : Script for FindSim """
__author__ = "HarshaRani"
__copyright__ = "Copyright 2021 HillTau, NCBS"
__maintainer__ = "HarshaRani"
__email__ = "hrani@ncbs.res.in"
import os
import sys
sys.path.append(os.path.dirname(__file__))
import setuptools
#from distutils.core import setup, Extension
from setuptools import setup, Extension
setuptools.setup(
name="HillTau",
description="A fast, compact abstraction for model reduction in biochemical signaling networks",
version="1.0",
author= "Upinder S. Bhalla",
author_email="bhalla@ncbs.res.in",
maintainer= "HarshaRani",
maintainer_email= "hrani@ncbs.res.in",
long_description = open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
packages=["HillTau","HillTau.CppCode"],
package_dir={'HillTau': "."},
ext_modules=[Extension('ht', ['CppCode/htbind.cpp','CppCode/ht.cpp'], include_dirs=['extern/pybind11/include','extern/exprtk'])],
install_requires = ['numpy','matplotlib','graphviz','pydot-ng','pydot','simplesbml'],
#dependency_links=[
# Make sure to include the `#egg` portion so the `install_requires` recognizes the package
#'git+ssh://git@github.com/pybind/pybind11.git#egg=ExampleRepo-0.1'],
url ="http://github.com/Bhallalab/HillTau",
package_data = {"HillTau" : ['HT_MODELS/*.json','*.xml','CppCode/hillTau.py']},
license="GPLv3",
entry_points = {
'console_scripts' : [ 'HillTau = HillTau.__main__:run',
'Hilltau = HillTau.__main__:run',
'hillTau = HillTau.__main__:run',
'hilltau = HillTau.__main__:run',
'htgraph = HillTau.__main__:run_htgraph',
'ht2sbml = HillTau.__main__:run_ht2sbml'
]
},
)