-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.14 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name="delierium",
version="0.1.0",
description="Symmetry Analysis for ODEs using SageMath",
long_description=long_description,
long_description_content_type='text/markdown',
setup_requires=["more-itertools"],
install_requires=["more-itertools", "pylatexenc", "sage>=9.6"],
python_requires = ">=3.6",
author='Martin Mayerhofer-Schöpf',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Mathematicians',
'Topic :: Calculus :: ODE',
'Topic :: Scientific/Engineering :: Mathematics'
],
keywords='ODE PDE Lie Symmetry',
# fixme: an empty key should be enough?
package_dir={'delierium': 'delierium'},
project_urls={'Source': 'https://github.com/tapir442/delierium'}
)