forked from nagordon/mechpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 956 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (36 loc) · 956 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
29
30
31
32
33
34
35
36
37
from setuptools import setup
setup(
name='mechpy',
version='0.0.1',
description="mechanical engineering toolbox",
author='Neal Gordon, Andy Perez',
packages=[
'mechpy/composites',
'mechpy/bolted_joints'
],
license="MIT",
long_description=open('README.md').read(),
url='https://github.com/sharkweek/mechpy',
keywords=[
'composites',
'mechanics',
'statics',
'materials',
'structures'
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5+",
"License :: MIT",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Development Status :: 3 - Alpha"
],
install_requires=[
'numpy',
'pandas',
'unyt'
],
python_requires='>=3.5'
)