-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 899 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
from setuptools import setup
import versioneer
ENTRY_POINTS = {
'console_scripts': [
'copasi_petab_import=copasi_petab_importer.convert_petab:main',
'copasi_petab_gui=copasi_petab_importer.PEtab:petab_gui',
]
}
setup(
name='copasi-petab-importer',
packages=['copasi_petab_importer'],
package_dir={'copasi_petab_importer': 'copasi_petab_importer'},
url='https://github.com/copasi/python-petab-importer',
license='Artistic-2.0',
author='Frank T. Bergmann',
author_email='[email protected]',
description='COPASI PEtab Importer',
entry_points=ENTRY_POINTS,
install_requires=['numpy', 'pandas', 'python-copasi', 'python-libsbml', 'pyyaml'],
extras_require={'gui': ['PyQt5']},
package_data={'copasi_petab_importer': ['*.ui']},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
)