-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (78 loc) · 1.84 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
[metadata]
name = bowdata.test.flask
author = Oliver Richardson
author_email = [email protected]
description = flask app + API test fixtures
long_description = file:README.rst
classifiers =
Environment :: Console
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Operating System :: POSIX
Operating System :: Microsoft :: Windows :: Windows 10
License :: Other/Proprietary License
provides = bowdata.test.flask
; can't use this as we are setting requirements in setup.py which breaks the wheel
; requires-dist = setuptools
[options]
setup_requires =
setuptools
package_dir =
=src
packages = find_namespace:
namespace_packages =
bowdata
bowdata.test
;[options.entry_points]
;console_scripts =
;enter-command-name=modeule:function_name
;[options.extras_require]
;environments = azdopackage>=0.0.13
;pipelines = azdopackage>=0.0.25
[options.package_data]
* = *.rst
requirements.txt
*.ini
*.cfg
[options.packages.find]
where=src
[versioneer]
vcs = git
style = pep440
versionfile_source = src/bowdata/test/flask/_version.py
versionfile_build = bowdata/test/flask/_version.py
tag_prefix =
parentdir_prefix = bowdata.test.flask-
[flake8]
ignore = E501,E226,E121,E123,E126,E24,E704,D107
count = True
exclude =
.git,
.\.git,
__pycache__,
docs/source/conf.py,
./docs/source/conf.py,
build/*,
.\build\lib\*,
.\build\*,
dist,
docs/*,
*.pyc,
*.rst,
*.md,
*.png,
.tox,
examples,
tests,
versioneer.py,
.venv/*,
.tox/*
show_source = True
statistics = True
import-order-style = appnexus
application-import-names = bowdata.test.flask
application-package-names = bowdata
per-file-ignores =
__init__.py: D104, F401, I202, I100, E402