-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (69 loc) · 1.71 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
[metadata]
name = pyrefox
version = attr: pyrefox.__version__
author = Nuno André
author_email = [email protected]
description = Firefox tools
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_files = LICENSE
url = https://github.com/nuno-andre/pyrefox
project_urls =
Source = https://github.com/nuno-andre/pyrefox
Bug Tracker = https://github.com/nuno-andre/pyrefox/issues
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development
Typing :: Typed
platforms = any
[options]
zip_safe = false
python_requires = >= 3.6.1
package_dir =
=src
packages = find:
setup_requires =
setuptools >= 40.9.0
wheel >= 0.32
install_requires =
sqlalchemy
pydantic
lz4
email-validator
[options.packages.find]
where = src
exclude =
tests*
[options.package_data]
pyrefox =
py.typed
[options.extras_require]
tests =
pytest
pyyaml
[flake8]
ignore =
E221, # multiple spaces before operator
E241, # multiple spaces after ':'
exclude =
.git,
__pycache__
max-complexity = 10
max-line-length = 99
inline-quotes = single
multiline-quotes = single
docstring-quotes = single