-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
33 lines (30 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('resonance/version.py').read())
setup(
name='resonance',
version=__version__,
author='Jason K. Moore',
author_email='[email protected]',
url="https://github.com/moorepants/resonance/",
description='Learning mechanical vibrations through computation.',
long_description=open('README.rst').read(),
keywords="engineering vibrations mechanical simulation",
license='MIT',
packages=find_packages(),
# These versions correspond to those in Ubuntu 18.04 LTS
install_requires=['numpy>=1.13',
'matplotlib>=2.1',
'scipy>=0.19',
'pandas>=0.17'],
extras_require={'notebooks': ['notebook', 'ipywidgets']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Physics',
],
)