mirror of
https://github.com/evennia/evennia.git
synced 2025-10-29 11:26:10 +00:00
Introduce black, a Python code formatter. Also a Makefile that includes two common targets: * fmt (auto-format the code) * lint (lint the code and return non-zero if out of spec) We can re-use the latter in CI. By introducing a code formatter, we can cut down on stylistic variations across a now-large codebase. We can also avoid most style discussions in PR if we just have this thing enforce it for us.
19 lines
257 B
Plaintext
19 lines
257 B
Plaintext
# Evennia dependencies
|
|
|
|
# general
|
|
django >= 2.2.5, < 2.3
|
|
twisted >= 19.2.1, < 20.0.0
|
|
pytz
|
|
django-sekizai
|
|
inflect
|
|
autobahn >= 17.9.3
|
|
model_mommy
|
|
|
|
# testing and development
|
|
mock >= 1.0.1
|
|
anything
|
|
black
|
|
|
|
# windows-specific
|
|
pypiwin32;platform_system=="Windows"
|