-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (44 loc) · 1.24 KB
/
setup.py
File metadata and controls
50 lines (44 loc) · 1.24 KB
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
import os
from setuptools import find_packages, setup
# Load README
with open('README.md') as f:
readme = f.read()
# Load version number
with open(os.path.join('cellmlmanip', 'version.txt'), 'r') as f:
version = f.read()
setup(
name='cellmlmanip',
version=version,
description='CellML loading and model equation manipulation',
long_description=readme,
long_description_content_type='text/markdown',
author='Asif U Tamuri, Sarah M Keating, Maurice Hendrix, Michael Clerx, Jonathan Cooper',
author_email='j.p.cooper@ucl.ac.uk',
url='https://github.com/ModellingWebLab/cellmlmanip',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
python_requires='>=3.9',
install_requires=[
'lxml>=4.7',
'networkx>=2.1',
'Pint>=0.9, <0.20',
'rdflib>=4',
'sympy>=1.4, <1.13',
],
extras_require={
'docs': [
'sphinx>=2.0',
],
'test': [
'flake8',
'isort',
'pytest>=6.0',
'pytest-cov',
],
},
)