-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.cfg
More file actions
50 lines (46 loc) · 980 Bytes
/
setup.cfg
File metadata and controls
50 lines (46 loc) · 980 Bytes
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
[metadata]
name = cbadc
version = 0.3.3
author = Hampus Malmberg
author_email = hampus.malmberg88@gmail.com
description = A toolbox for simulating control-bounded converters.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/hammal/cbadc
project_urls =
Bug Tracker = https://github.com/hammal/cbadc/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
[options]
zip_safe = true
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires = file: requirements.txt
include_package_data = True
[options.packages.find]
where = src
[flake8]
ignore =
E501,
W605,
E203,
F401,
E402,
W503,
BLK100,
E741,
E712,
F811
exclude =
build,
docs/build,
.git,
__pycache__,
docs/source/conf.py,
*.vams,
.tox,
max-line-length = 88