-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
26 lines (25 loc) · 942 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
from distutils.core import setup
setup(
name='mechpy',
version='0.1',
description="mechanical engineering toolbox",
author='Neal Gordon',
author_email='nealagordon@gmail.com',
packages=['mechpy'],
package_data={'': ['compositematerials.csv']},
include_package_data=True,
license="The MIT License (MIT)",
long_description=open('README.md').read(),
url='https://github.com/nagordon/mechpy',
keywords = ['composites', 'mechanics', 'statics', 'materials'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"License :: The MIT License (MIT)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Development Status :: 3 - Alpha"
],
install_requires=['numpy', 'matplotlib', 'scipy','sympy','pint','python-quantities'],
)