forked from PEtab-dev/petab_test_suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (50 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""PEtab test suite python package"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
def read(fname):
with open(fname, encoding='utf-8') as f:
return f.read()
# Get the long description from the README file
long_description = read(path.join(here, 'README.md'))
# Get the version
exec(read(path.join(here, 'petabtests', 'version.py')))
setup(
name='petabtests',
version=__version__, # noqa: F821
description='PEtab testsuite library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/PEtab-dev/petab_test_suite',
author='PEtab-dev',
author_email='yannik.schaelte@gmail.com',
# author_email='',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish
'License :: OSI Approved :: BSD 3-Clause "New" or "Revised"'
' License (BSD-3-Clause)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='PEtab testsuite',
packages=find_packages(where='petab_test_suite'),
install_requires=['numpy',
'pandas',
'petab>=0.1.4'],
python_requires='>=3.6',
# install_requires=[''],
entry_points={
'console_scripts': [
'petabtests_create = petabtests.core:create',
'petabtests_clear = petabtests.core:clear',
]
},
)