-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 2.14 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "python-usernames"
description = "Python library to validate usernames suitable for use in public facing applications."
authors = [
{ name = "Saurabh Kumar", email = "python-usernames@saurabh-kumar.com" }
]
dependencies = []
readme = "README.md"
license = "MIT"
requires-python = ">= 3.8"
dynamic = ["version"]
keywords = [
'security',
'username',
'validation',
'user registration',
'safe',
'signup',
'regex',
]
classifiers=[
# As from https://pypi.org/classifiers/
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
# 'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'Topic :: Security',
# 'Environment :: Web Environment',
# 'Framework :: Django',
]
[project.urls]
Documentation = "https://github.com/theskumar/python-usernames/tree/main#readme"
Source = "https://github.com/theskumar/python-usernames"
Tracker = "https://github.com/theskumar/python-usernames/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=7.3.2",
"black>=23.3.0",
"ruff>=0.0.272",
"hatch>=1.7.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[tool.hatch.build.targets.wheel]
packages = ["src/python_usernames"]
[tool.hatch.version]
path = "src/python_usernames/__about__.py"