-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 916 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
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'compartmentModel',
version='1.01',
license='MIT',
description='A command line utility to estimate parameters for Compartment Model. For more details see documentation and Dutta et al, Gen Res, 2023.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Lab of Michael J. Guertin',
author_email='[email protected]',
url = 'https://github.com/guertinlab',
py_modules=['compmodel.compmodel'],
install_requires=['Click',
'pandas', 'configparser', 'PyYAML', 'tqdm', 'numpy','scipy','matplotlib'],
entry_points='''
[console_scripts]
polcomp=compmodel.compmodel:cli
'''
)