-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
35 lines (32 loc) · 998 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
27
28
29
30
31
32
33
34
from setuptools import setup
from io import open
requirements = [
'jitcxde_common>1.3',
'symengine>=0.3.1.dev0',
'numpy',
'chspy>=1.1',
]
setup(
name = 'jitcdde',
description = 'Just-in-Time Compilation for Delay Differential Equations',
long_description = open('README.rst', encoding='utf8').read(),
author = 'Gerrit Ansmann',
author_email = '[email protected]',
url = 'http://github.com/neurophysik/jitcdde',
python_requires=">=3.6",
packages = ['jitcdde'],
package_data = {'jitcdde': ['jitced_template.c']},
include_package_data = True,
install_requires = requirements,
setup_requires = ['setuptools_scm'],
use_scm_version = {'write_to': 'jitcdde/version.py'},
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
],
)