-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 798 Bytes
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
[project]
name = "guardify"
version = "0.4.0"
description = "A simple library for token generation and validation."
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [{name = "Nadav Tasher", email = "hey@nadav.app"}]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["token", "authentication"]
dependencies = [
"runtypes~=0.6.2",
]
[project.urls]
Homepage = "https://github.com/NadavTasher/Guardify"
[options]
exclude = "tests"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = false
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.yapf]
based_on_style = "google"
column_limit = 400
indent_width = 4