-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
268 lines (194 loc) · 6.23 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
[metadata]
name = PyOOMUSH
description = An object-oriented dynamic text-based interactive MUSH, or multi-user shared environment.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE.md
author = Alice Bevan-McGregor
author_email = alice@gothcandy.com
url = https://github.com/amcgregor/pyoomush
project_urls =
Source Code = https://github.com/marrow/pyoomush
Downloads = https://github.com/marrow/pyoomush/releases
Documentation = https://github.com/marrow/pyoomush/wiki
Issue Tracker = https://github.com/marrow/pyoomush/issues
Funding = https://github.com/sponsors/amcgregor
keywords =
mush
mud
moo
muck
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Environment :: Other Environment
Intended Audience :: Developers
Intended Audience :: Other Audience
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Artistic Software
Topic :: Communications :: Chat
Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
Topic :: Games/Entertainment :: Role-Playing
Topic :: Games/Entertainment :: Simulation
Topic :: Internet
Topic :: Terminals :: Telnet
[options]
packages =
oom
include_package_data = True
python_requires = >=3.8
zip_safe = False
setup_requires =
setuptools-scm >= 1.7.0
install_requires =
typeguard ~= 2.13.3
marrow.mongo ~= 1.1.2
tests_require =
pytest
pytest-cov
pytest-flakes
pytest-isort
pytest-runner
web.dispatch.object
backlash
[options.entry_points]
web.app =
static = web.app.static:static
web.acl.predicate =
not = web.ext.acl:Not
always = web.ext.acl:always
never = web.ext.acl:never
first = web.ext.acl:First
all = web.ext.acl:all
any = web.ext.acl:any
matches = web.ext.acl:ContextMatch
contains = web.ext.acl:ContextContains
web.extension =
base = web.ext.base:BaseExtension
request = web.ext.base:BaseExtension
response = web.ext.base:BaseExtension
analytics = web.ext.analytics:AnalyticsExtension
timing.prefix = web.ext.analytics:TimingPrefix
timing.suffix = web.ext.analytics:TimingExtension
timing = web.ext.analytics:TimingExtension
annotation = web.ext.annotation:AnnotationExtension
cast = web.ext.annotation:AnnotationExtension
typecast = web.ext.annotation:AnnotationExtension
args.validation = web.ext.args:ValidateArgumentsExtension
kwargs.validation = web.ext.args:ValidateArgumentsExtension
args.context = web.ext.args:ContextArgsExtension
args = web.ext.args:RemainderArgsExtension
args.remainder = web.ext.args:RemainderArgsExtension
kwargs = web.ext.args:QueryStringArgsExtension
kwargs.qs = web.ext.args:QueryStringArgsExtension
args.elision = web.ext.args:StripArgumentsExtension
kwargs.elision = web.ext.args:StripArgumentsExtension
kwargs.form = web.ext.args:FormEncodedKwargsExtension
kwargs.json = web.ext.args:JSONKwargsExtension
debugger = web.ext.debug:DebugExtension
console = web.ext.debug:DebugExtension
request.accept = web.ext.extmime:AcceptFilenameExtension
local = web.ext.local:ThreadLocalExtension
serialization = web.ext.serialize:SerializationExtension
defer = web.ext.defer:DeferralExtension
web.server =
wsgiref = web.server.stdlib:simple
cgiref = web.server.stdlib:cgi
iiscgiref = web.server.stdlib:iiscgi
waitress = web.server.waitress_:serve[waitress]
tornado = web.server.tornado_:serve[tornado]
fcgi = web.server.fcgi:serve[flup]
appengine = web.server.appengine:serve
eventlet = web.server.eventlet_:serve[eventlet]
gevent = web.server.gevent_:serve[gevent]
diesel = web.server.diesel_:serve[diesel]
bjoern = web.server.bjoern_:serve[bjoern]
web.serialize =
json = web.ext.serialize:json.dumps
application/json = web.ext.serialize:json.dumps
yaml = yaml:dumps[yaml]
application/x-yaml = yaml:dumps[yaml]
web.deserialize =
json = web.ext.serialize:json.loads
application/json = web.ext.serialize:json.loads
yaml = yaml:loads[yaml]
application/x-yaml = yaml:loads[yaml]
# These are handled by the base extension as core functionality, to make use of WebOb caching.
application/x-www-form-urlencoded = web.ext.base:nop
multipart/form-data = web.ext.base:nop
[options.extras_require]
development =
pytest # Test runner.
pytest-cov # Validate test coverage.
pytest-flakes # Validate syntax and style.
pytest-isort # Validate import ordering.
pytest-runner # setup.py support for pytest test execution.
web.dispatch.object # Default dispatch style.
backlash # An interactive web-based debugger. See also: wdb
ptipython # Improved interactive REPL shell, combining ipython and ptpython.
pudb # Interactive step-debugger, with a Borland aesthetic.
waitress # Threaded development-time web server.
e # Useful utility to quickly evaluate expressions or retrieve importable module paths.
# Dispatch Mechanisms
object = web.dispatch.object
route = web.dispatch.route
rest = web.dispatch.resource
resource = web.dispatch.resource
traversal = web.dispatch.traversal
# General Extras
cli = web.command # Command-line interface.
template = cinje # Recommended template engine.
database = web.db # Recommended database engine.
asset = webassets # Recommended static asset management.
bson = pymongo # BSON and MongoDB-Extended JSON serialization support.
yaml = pyyaml # YAML serialization support.
# Plugin Dependencies
bjoern = bjoern
eventlet = eventlet
flup = flup
gevent = gevent
tornado = tornado
waitress = waitress
[options.package_data]
* = *.txt, *.md
[aliases]
test = pytest
[check]
metadata = 1
[clean]
build-base = .packaging/build
bdist-base = .packaging/dist
[build]
build-base = .packaging/build
[install]
optimize = 1
[bdist]
bdist-base = .packaging/dist
dist-dir = .packaging/release
[bdist_egg]
bdist-dir = .packaging/dist
dist-dir = .packaging/release
[bdist_wheel]
bdist-dir = .packaging/dist
dist-dir = .packaging/release
[wheel]
universal = 0
[tool:pytest]
addopts =
-l -r fEsxw
--flakes
--cov-report term-missing
--cov-report xml
--no-cov-on-fail
--cov web
--durations=5
--color=yes
test