dpaste/setup.cfg

79 lines
1.7 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-05-16 18:07:21 +10:00
description = A Django based pastebin for text and code.
2019-01-25 23:47:00 +11:00
long_description = file: README.rst, CHANGELOG.rst
2019-05-16 18:07:21 +10:00
long_description_content_type = text/x-rst
2019-01-25 23:47:00 +11:00
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
2019-05-16 18:49:58 +10:00
python_requires = >=3.4
2019-01-25 23:47:00 +11:00
install_requires =
# Essential packages
six
django>=1.11
pygments>=1.6
django-staticinline>=1.0
django-csp>=3.3
2019-06-24 19:27:25 +10:00
# Additional Lexer
jsx-lexer==0.0.7
2019-01-25 23:47:00 +11:00
misaka>=2.1.0
docutils
# Testsuite
tox
coverage
2019-09-12 17:13:17 +10:00
[options.packages.find]
where = .
exclude =
dpaste/settings/local.py
2019-01-25 23:47:00 +11:00
[isort]
known_first_party = dpaste
2019-03-16 20:40:56 +11:00
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
2019-01-25 23:47:00 +11:00
skip = migrations
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=80
2019-01-25 23:47:00 +11:00
[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