forked from osule/mechpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 855 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 855 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
from distutils.core import setup
setup(
name='mechpy',
version='0.01',
description="A Python package for mechanical engineers",
author='Neal Gordon',
author_email='nealagordon@gmail.com',
packages=['mechpy'],
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 :: 2 - Pre-Alpha"
],
install_requires=['numpy', 'matplotlib', 'scipy','sympy','pint','python-quantities'],
)