-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (25 loc) · 1.03 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding = "utf-8") as file:
desc = file.read()
setup(
name='lyapynov',
version='1.0.1',
author='Thomas Savary',
description='A python package to compute Lyapunov exponents, covariant Lyapunov vectors (CLV) and adjoints of a dynamical system.',
long_description=desc,
long_description_content_type="text/markdown",
url='https://github.com/ThomasSavary08/Lyapynov',
packages=find_packages(),
keywords='Lyapunov, Lyapunov exponents, LCE, Covariant Lyapunov vectors, CLV, Dynamical systems, ODE',
python_requires='>=3.8',
install_requires=['numpy', 'matplotlib'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
]
)