-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.53 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
[project.optional-dependencies]
dev = [
"pytest>=6.0",
]
[tool.pdm.build]
includes = ["xontrib"]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.isort]
profile = "black"
[tool.black]
include = '\.pyi?$'
force-exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.vscode
| \.venv
| _build
| buck-out
| build
| dist
| disk-cache.sqlite3
)/
'''
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
authors = [
{name = "Noortheen Raja", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = ">=3.7"
dependencies = [
"xonsh>=0.12",
]
name = "xontrib-django"
version = "0.0.2"
description = "Django auto-completions for Xonsh shell"
readme = "README.md"
keywords = ["xontrib", "xonsh"]
classifiers = ["Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Topic :: System :: Shells", "Topic :: System :: System Shells", "Topic :: Terminals", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8"]
[project.urls]
Documentation = "https://github.com/jnoortheen/xontrib-django/blob/master/README.md"
Code = "https://github.com/jnoortheen/xontrib-django"
"Issue tracker" = "https://github.com/jnoortheen/xontrib-django/issues"
repository = "https://github.com/jnoortheen/xontrib-django"