-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 835 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
27
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'Description': 'A simple Finite Element Modeling (FEM) library',
'author': 'Greg Hamel (MrJarv1s)',
'url': 'https://github.com/MrJarv1s/FEMur',
'download_url': 'https://github.com/MrJarv1s/FEMur',
'author_email': '[email protected]',
'version': '0.1.1',
'install_requires': ['nose', 'numpy', 'scipy', 'sympy', 'matplotlib'],
'packages': ['FEMur'],
'scripts': [],
'name': 'FEMur',
'classifiers': [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering"
]
}
setup(**config)