forked from pystra/pystra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 808 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 setuptools import setup, find_packages
requires = [
'numpy',
'scipy',
]
setup(name='pyre',
version='5.0.2',
description='PyRe (Python Reliability) is a python module for structural reliability analysis',
long_description=open('README.rst').read(),
license=open('LICENSE').read(),
classifiers=[
"Programming Language :: Python",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: General Public License (GPL)",
],
author='Juergen Hackl',
author_email='[email protected]',
url='http://github.com/hackl/pyre',
keywords='structural reliability analysis',
install_requires = requires,
packages=find_packages(),
)