dpaste/setup.cfg

73 lines
1.6 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 :: 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
2019-05-16 08:49:58 +00:00
python_requires = >=3.4
2019-01-25 12:47:00 +00:00
install_requires =
# Essential packages
six
django>=1.11
pygments>=1.6
django-staticinline>=1.0
django-csp>=3.3
2019-06-24 09:27:25 +00:00
# Additional Lexer
jsx-lexer==0.0.7
2019-01-25 12:47:00 +00:00
misaka>=2.1.0
docutils
# Testsuite
tox
coverage
[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