-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
41 lines (38 loc) · 959 Bytes
/
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
[metadata]
name = nastran-aeroelasticity
version = 0.2.1
author = Victor Santos
author_email = [email protected]
description = Some usefull routines for aeroelastic analysis with NASTRAN
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/zuckberj/nastran-aero-flutter
project_urls =
Bug Tracker = https://github.com/zuckberj/nastran-aero-flutter/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.7
install_requires =
matplotlib>=3.1.3
numpy>=1.18.1
pyNastran>=1.3.2
pandas>=1.3
[options.packages.find]
where = src
[flake8]
select =
# pycodestyle
E112,E113,E9,W6,
# pyflakes
F402,F404,F406,F407,F5,F6,F7,F821,F823,F831
ignore =
# pycodestyle
E722,W605,
# pyflakes
F504,F522,F523,F541,F705