-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (51 loc) · 1.38 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
[metadata]
name = gitbrowserinteract
version = 0.0.9
description = Adds tokens to GitHub and GitLab using browsercontroller.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/a-t-0/gitbrowserinteract
author = a-t-0
author_email = no-email@no-email.org
maintainer = a-t-0
maintainer_email = no-email@no-email.org
license = AGPLv3
license_file = licence
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU Affero General Public License v3
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Topic :: Internet :: WWW/HTTP :: Browsers
[options]
packages = find:
package_dir =
=src
# Dependencies
install_requires =
browsercontroller>=0.0.7
pyannotate>=1.2.0
pytest-cov>=4.0.0
typeguard>=2.13.3
selenium>=4.8.2
python_requires = >=3.10
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
gitbrowserinteract = gitbrowserinteract:main
[bdist_wheel]
universal = 1
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_unused_ignores = true
[mypy-tests.*]
disallow_untyped_defs = false