-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (30 loc) · 1.02 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
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""multiflap - periodic orbit detection and stability assessment"""
from setuptools import setup, find_packages
version = "1.1"
setup(
name='multiflap',
version=version,
author="Gianmarco Ducci",
author_email="[email protected]",
description="periodic orbit detection and stability assessment",
license='LICENSE',
keywords="limit cycle, stability, Floquet, multiple shooting",
url='https://github.com/vortexlab-uclouvain/multiflap',
packages=find_packages(exclude=['img', 'amin', 'pdf']),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'numpy>=1.14,<2.0',
'matplotlib',
'scipy'
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: Apache License, Version 2.0, January 2004',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
]
)