forked from ioannis-vm/OpenSees_Model_Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (52 loc) · 1.2 KB
/
setup.cfg
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
54
55
[metadata]
name = osmg
version = 0.2.7
url = https://github.com/ioannis-vm/OpenSees_Model_Generator
description = OpenSees Model Generator
long_description = OpenSees Model Generator
long_description_content_type = text/x-rst
author = John Vouvakis Manousakis
license = GPL
license_files = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
[options]
packages =
osmg
osmg.gen
osmg.gen.steel
osmg.graphics
osmg.ops
osmg.postprocessing
osmg.preprocessing
install_requires =
plotly>=4.14.3
matplotlib>=3.4.1
pandas>=1.2.4
xlrd>=2.0.1
openpyxl>=3.0.7
shapely>=1.7.1
descartes>=1.1.0
numpy>=1.20.2
scipy>=1.9.0
tqdm>=2.0.0
dill>=0.3.7
python_requires = >=3.9
package_dir =
=src
include_package_data=True
zip_safe = no
[options.extras_require]
testing =
pytest>=6.0
pytest-cov>=2.0
mypy>=0.910
flake8>=3.9
[flake8]
extend-ignore =
# Google Python style is not RST until after processed by Napoleon
# See https://github.com/peterjc/flake8-rst-docstrings/issues/17
RST201,RST203,RST301,RST304