-
Notifications
You must be signed in to change notification settings - Fork 124
/
setup.cfg
106 lines (95 loc) · 2.25 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
[metadata]
name = dpaste
version = attr: dpaste.__version__
description = A Django based pastebin for text and code.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
author = 'Martin Mahner, Darren Nathanael'
author_email = '[email protected], [email protected]'
url = https://github.com/DarrenOfficial/dpaste
keywords = django, pastebin
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Framework :: Django
[options]
packages = find:
include_package_data = True
zip_safe = False
python_requires = >=3.6
install_requires =
# Essential packages
django>=3.2
pygments<=2.11.2
django-staticinline>=1.0
django-csp>=3.6
dj_database_url>=0.5.0
ratelimiter>=1.2
# Additional Lexer
jsx-lexer>=0.0.8
misaka>=2.1.0
docutils
# Testsuite
tox
pytest
pytest-cov
pytest-django
# Extra packages for local development
[options.extras_require]
production =
psycopg2-binary==2.9.3
django-webserver[pyuwsgi]==1.2.0
dev =
ipdb
isort
black
sphinx
sphinx-autobuild
sphinx-rtd-theme
sphinx_press_theme
sphinxcontrib-httpdomain
django-sslserver
[options.packages.find]
where = .
exclude =
dpaste/settings/local.py
[isort]
known_first_party = dpaste
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
skip = migrations
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[coverage:run]
source = dpaste
branch = True
omit =
dpaste/migrations/*
dpaste/tests/*
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
[coverage:html]
directory = /tmp/coverage_report/dpaste
[tool:pytest]
python_files = tests.py test_*.py *_tests.py
addopts =
--ds=dpaste.settings.tests
--cov=./dpaste
--cov-append
--cov-branch
--nomigrations
--reuse-db