-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
117 lines (101 loc) · 3.27 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[bdist_wheel]
# NOTE: "universal = 1" causes `bdist_wheel` to create a wheel that with the
# NOTE: tag "py2.py3" which implies (and tricks pip into thinking) that this
# NOTE: wheel contains Python 2 compatible code. This is not true and conflicts
# NOTE: with the "Requires-Python" field in the metadata that says that we only
# NOTE: support Python 3.6+.
# NOTE: We need to keep it at "0" which will produce wheels tagged with "py3"
# NOTE: when built under Python 3.
# Ref: https://github.com/pypa/packaging.python.org/issues/726
universal = 0
[metadata]
name = octomachinery
url = https://octomachinery.dev
project_urls =
Chat: Matrix = https://matrix.to/#/#octomachinery:matrix.org
Chat: Matrix (PyBA) = https://matrix.to/#/#pyba:matrix.org
Chat: Matrix (@webknjaz) = https://matrix.to/#/@webknjaz:matrix.org
CI: GitHub = https://github.com/sanitizers/octomachinery/actions/workflows/ci-cd.yml?query=event:push
Docs: RTD = https://docs.octomachinery.dev
GitHub: issues = https://github.com/sanitizers/octomachinery/issues
GitHub: repo = https://github.com/sanitizers/octomachinery
description = Invisible engine driving octobot machines. Simple, yet powerful.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Sviatoslav Sydorenko (@webknjaz)
author_email = [email protected]
license = GPLv3+
license_file = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Environment :: Other Environment
Environment :: Web Environment
Framework :: AnyIO
Framework :: AsyncIO
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: HTTP Servers
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Version Control
Topic :: Software Development :: Version Control :: Git
Topic :: System :: Networking
Topic :: Utilities
Typing :: Typed
keywords =
Bot
Framework
Framework for writing GitHub Apps
GitHub
GitHub Actions
GitHub API
GitHub Apps
GitHub Checks API
[options]
python_requires = >=3.7
package_dir =
= .
packages = find_namespace:
zip_safe = True
include_package_data = True
# These are required in actual runtime:
install_requires =
aiohttp
anyio < 2.0.0
click
cryptography
environ-config >= 19.1.0
envparse
gidgethub >= 4.2.0
pyjwt[crypto]
pyyaml
sentry_sdk
setuptools_scm
[options.packages.find]
where = .
[options.extras_require]
docs =
sphinx
sphinxcontrib-apidoc
furo
testing =
pytest
pytest-aiohttp
pytest-cov
pytest-xdist