dpaste/setup.cfg

70 lines
1.6 KiB
INI
Raw Normal View History

2019-01-25 23:47:00 +11:00
[metadata]
2019-01-26 00:02:34 +11:00
name = dpaste
version = attr: dpaste.__version__
2019-01-25 23:47:00 +11:00
description =
dpaste is a Django based pastebin. It\'s intended to run
separately but its also possible to be installed into an
existing Django project like a regular app.
long_description = file: README.rst, CHANGELOG.rst
author = Martin Mahner
author_email = martin@mahner.org
url = https://github.com/bartTC/dpaste
2019-01-26 00:02:34 +11:00
keywords = django, pastebin
2019-01-25 23:47:00 +11: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 :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Framework :: Django
[options]
packages = find:
include_package_data = True
zip_safe = False
python_requires = '>=3.4'
install_requires =
# Essential packages
six
django>=1.11
pygments>=1.6
django-staticinline>=1.0
django-csp>=3.3
# Additional Text Lexer
misaka>=2.1.0
docutils
# Testsuite
tox
coverage
[isort]
known_first_party = dpaste
2019-03-16 20:40:56 +11:00
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
multi_line_output = 0
2019-01-25 23:47:00 +11:00
skip = migrations
[coverage:run]
source = dpaste
branch = True
omit =
2019-01-26 00:02:34 +11:00
dpaste/migrations/*
dpaste/tests/*
2019-01-25 23:47:00 +11:00
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
[coverage:html]
directory = /tmp/coverage_report/dpaste