-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.cfg
89 lines (79 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[metadata]
name = desmod
author = Peter Grayson
author_email = [email protected]
description = Discrete Event Simulation Modeling using SimPy
long_description = file: README.rst, LICENSE.txt, CHANGELOG.rst
url = https://desmod.readthedocs.io/
download_url = https://github.com/westerndigitalcorporation/desmod
license = MIT
license_file = LICENSE.txt
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering
[options]
include_package_data = True
zip_safe = False
setup_requires =
setuptools_scm
install_requires =
simpy>=4
pyvcd
PyYAML
python_requires = >= 3.6
packages = desmod
[options.package_data]
desmod = py.typed
[bdist_wheel]
universal = 1
[tool:pytest]
[flake8]
max-line-length = 88
ignore = D, E203, E501, W503
exclude =
build/
dist/
pip-wheel-metadata/
docs/_build/
.*/
__pycache__
.mypy_cache
[isort]
force_grid_wrap = 0
from_first = True
include_trailing_comma = True
line_length = 88
multi_line_output = 3
use_parentheses = True
skip_glob = .*
known_third_party =
colorama
progressbar
simpy
vcd
yaml
[mypy]
files = desmod
python_version = 3.6
show_error_codes = True
[mypy-colorama]
ignore_missing_imports = True
[mypy-progressbar]
ignore_missing_imports = True
[mypy-vcd.*]
ignore_missing_imports = True