-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.6 KB
/
pyproject.toml
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.coverage.run]
branch = true
omit = [
"*/__init__.py",
"*/apps.py",
"*/devscripts*",
"*/docs/*",
"*/local_settings_template.py",
"*/manage.py",
"*/migrations/*",
"*/settings*",
"*/setup.py",
"*/tests*",
"*/wsgi.py"
]
[tool.poetry]
authors = ["Tim White <[email protected]>"]
classifiers = ["Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Internet :: WWW/HTTP"]
description = "Enables returning the X-Robots-Tag header for all URLs. Useful during development to ensure sites are not accidentally indexed before they are ready."
homepage = "https://github.com/cyface/django-x-robots-tag-middleware"
license = "MIT"
name = "django-x-robots-tag-middleware"
packages = [{ include = "x_robots_tag_middleware" }, ]
readme = "README.md"
version = "1.3.3"
[tool.poetry.dependencies]
python = "^3.6"
Django = ">1.10"
[tool.poetry.dev-dependencies]
coverage = "^5.3"
black = "^20.8b1"