-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 800 Bytes
/
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
from setuptools import setup, find_packages
# The text of the README file
with open('README.md') as f:
rm = f.read()
# This call to setup() does all the work
setup(
name="MDOF-toybox",
version="0.2.2",
description="Tooling to generate toy MDOF dynamics data for arbitrary linear and nonlinear systems in python",
long_description=rm,
long_description_content_type="text/markdown",
url="https://github.com/MDCHAMP/Toybox",
author="Max Champneys",
author_email="max.champneys@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
packages=['toybox'],
package_dir={'':'src'},
include_package_data=False,
install_requires=[
"numpy"
],
)