forked from JorgeDeLosSantos/nusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.06 KB
/
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
30
31
# -*- coding: utf-8 -*-
# ***********************************
# Author: Pedro Jorge De Los Santos
# E-mail: [email protected]
# Web: labdls.blogspot.mx
# License: MIT License
# ***********************************
from setuptools import setup
# Current status: pre-alpha
setup(name='nusa',
version='0.1.1.dev0',
description='Numerical Structural Analysis in Python using the FEM',
author='Pedro Jorge De Los Santos',
author_email='[email protected]',
license = "MIT",
keywords=["Structural Analysis","FEA","Mechanical Engineering"],
url='https://github.com/JorgeDeLosSantos/nusa',
packages=['nusa'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
]
)