-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (44 loc) · 1.4 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#from setuptools import find_packages, setup
from distutils.core import setup
import os
import sys
def setup_package():
src_path = os.path.dirname(os.path.abspath(__file__))
old_path = os.getcwd()
os.chdir(src_path)
sys.path.insert(0, src_path)
from setuptools import setup
try:
setup(
name='msops',
packages=["msops"],
version='1.4.1',
description='Python library for main shock after shock analysis with openseespy ',
author='Muhammed Sural',
license='MIT',
author_email = "muhammedsural@gmail.com",
url = 'https://github.com/muhammedsural/msops',
download_url = 'https://github.com/muhammedsural/msops/archive/refs/tags/0.4.1.tar.gz',
python_requires ='==3.9.0',
install_requires=[
"numpy==1.22.4",
"openseespy>=3.4.0.2",
"openseespywin>=3.3.0.1",
"opsvis==1.0.20",
"pandas==1.5.1",
"scipy==1.9.3",
"matplotlib==3.5.2"
],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9'
]
)
finally:
del sys.path[0]
os.chdir(old_path)
return
if __name__ == '__main__':
setup_package()