dpaste/setup.cfg

104 lines
2.1 KiB
INI
Raw Normal View History

2019-01-25 12:47:00 +00:00
[metadata]
2019-01-25 13:02:34 +00:00
name = dpaste
version = attr: dpaste.__version__
2019-05-16 08:07:21 +00:00
description = A Django based pastebin for text and code.
2019-01-25 12:47:00 +00:00
long_description = file: README.rst, CHANGELOG.rst
2019-05-16 08:07:21 +00:00
long_description_content_type = text/x-rst
2019-01-25 12:47:00 +00:00
author = Martin Mahner
author_email = martin@mahner.org
url = https://github.com/bartTC/dpaste
2019-01-25 13:02:34 +00:00
keywords = django, pastebin
2019-01-25 12:47:00 +00:00
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
2019-12-05 08:40:39 +00:00
Programming Language :: Python :: 3.8
2019-01-25 12:47:00 +00:00
Framework :: Django
[options]
packages = find:
include_package_data = True
zip_safe = False
2019-12-05 11:27:51 +00:00
python_requires = >=3.5
2019-01-25 12:47:00 +00:00
install_requires =
# Essential packages
2019-12-05 11:27:51 +00:00
django>=2.2
2019-01-25 12:47:00 +00:00
pygments>=1.6
django-staticinline>=1.0
django-csp>=3.3
dj_database_url==0.5.0
2019-01-25 12:47:00 +00:00
2019-06-24 09:27:25 +00:00
# Additional Lexer
2019-12-05 08:40:39 +00:00
jsx-lexer==0.0.8
2019-01-25 12:47:00 +00:00
misaka>=2.1.0
docutils
# Testsuite
tox
2019-12-05 08:40:39 +00:00
pytest
pytest-cov
pytest-django
# Extra packages for local development
[options.extras_require]
production =
psycopg2-binary==2.8.4
django-webserver[pyuwsgi]==1.1.0
dev =
2019-12-05 08:40:39 +00:00
ipdb
isort
black
django-sslserver
sphinx
sphinx-autobuild
sphinx-rtd-theme
sphinxcontrib-httpdomain
2019-01-25 12:47:00 +00:00
2019-09-12 07:13:17 +00:00
[options.packages.find]
where = .
exclude =
dpaste/settings/local.py
2019-01-25 12:47:00 +00:00
[isort]
known_first_party = dpaste
2019-03-16 09:40:56 +00:00
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
2019-01-25 12:47:00 +00:00
skip = migrations
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=80
2019-01-25 12:47:00 +00:00
[coverage:run]
source = dpaste
branch = True
omit =
2019-01-25 13:02:34 +00:00
dpaste/migrations/*
dpaste/tests/*
2019-01-25 12:47:00 +00:00
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
[coverage:html]
directory = /tmp/coverage_report/dpaste
2019-12-05 08:40:39 +00:00
[tool:pytest]
python_files = tests.py test_*.py *_tests.py
addopts =
--ds=dpaste.settings.tests
--cov=./dpaste
--cov-append
--cov-branch
--nomigrations
--reuse-db