forked from OptimalDesignLab/MotorModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 674 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 674 Bytes
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
from setuptools import setup
import re
__version__ = re.findall(
r"""__version__ = ["']+([0-9\.]*)["']+""",
open('motormodel/__init__.py').read(),
)[0]
setup(name='motormodel',
version=__version__,
author='Tucker Babcock',
author_email='tuckerbabcock1@gmail.com',
url='https://github.com/tuckerbabcock/MotorModel',
license='BSD 3-Clause License',
packages=[
'motormodel',
],
python_requires=">=3.8",
install_requires=[
'numpy>=1.21.4',
'openmdao>=3.18.0',
'mphys>=0.4.0',
'omESP'
],
classifiers=[
"Programming Language :: Python"
]
)