-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
55 lines (50 loc) · 1.08 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 = rvesimulator
version = file: VERSION
author = Jiaxiang(Yaga) Yi
author_email = [email protected]
description = rve simulation via abaqus.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = "python", "rve simulation", "abaqus", "multiscale simulation"
url = https://github.com/bessagroup/rvesimulator
license = MIT
license_files = file: LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
package_dir=
=src
packages=find:
python_requires = >=3.8
install_requires = file: requirements.txt
[options.packages.find]
where=src
exclude=
docs
tests
; [tool:pytest]
; minversion = 6.0
; testpaths =
; tests
; markers =
; smoke
; [flake8]
; ignore = W503, E501, F403, F841, F401
; exclude =
; .tox,
; __pycache__,
; dist,
; data,
; *.egg,
; docs,
; notebooks,
; tests
; .git
; src/rvesimulator/scriptbase
; select = E,W,F
; max-line-length = 119
; extend-ignore = E203