-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.3 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
[tool]
[tool.poetry]
name = "xeauth"
version = "0.2.3"
homepage = "https://github.com/jmosbacher/xeauth"
description = "Top-level package for xeauth."
authors = ["Yossi Mosbacher <[email protected]>"]
readme = "README.rst"
license = "MIT"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
]
packages = [
{ include = "xeauth" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
click = "*"
httpx = ">=0.19,<0.25"
appdirs = "^1.4.4"
param = "^1.12.0"
gnupg = "^2.3.1"
rich = "^13.1.0"
[tool.poetry.dev-dependencies]
bumpversion = "*"
coverage = "*"
flake8 = "*"
invoke = "*"
isort = "*"
pylint = "*"
pytest = "*"
sphinx = "*"
tox = "*"
yapf = "*"
sphinx-material = "*"
nbsphinx = "*"
[tool.poetry.plugins]
[tool.poetry.plugins."panel.auth"]
"xeauth" = "xeauth.integrations.panel:XenonLoginHandler"
[tool.poetry.scripts]
xeauth = 'xeauth.cli:main'
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}