-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
31 lines (29 loc) · 1.22 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
from setuptools import setup
def readme():
with open('README.md', encoding="utf8") as f:
return f.read()
setup(name='diffeqpy',
version='2.5.3',
description='Solving Differential Equations in Python',
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'
],
url='http://github.com/SciML/diffeqpy',
keywords='differential equations stochastic ordinary delay differential-algebraic dae ode sde dde oneapi AMD ROCm CUDA Metal GPU',
author='Chris Rackauckas and Takafumi Arakaki',
author_email='[email protected]',
license='MIT',
packages=['diffeqpy','diffeqpy.tests'],
install_requires=['juliacall>=0.9.14', 'jill'],
include_package_data=True,
zip_safe=False)