-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (68 loc) · 2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "scuid"
version = "0.3.1"
description = "scuid is a lightweight Python library for generating collision-resistant IDs optimized for horizontal scaling and high performance. It serves as a slim, alternative implementation of cuid with added flexibility for customization, including support for custom random number generators."
authors = ["Hieu Lam <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["src"]
ignore = ["**/typings"]
exclude = [
".*",
"__*",
"**/typings",
]
typeCheckingMode = "basic"
stubPath = "typings"
typeshedPath = "typings"
pythonPlatform = "Linux"
reportGeneralTypeIssues = false
reportAssignmentType = false
reportMissingModuleSource = false
[project]
license = {file = "LICENSE"}
keywords = [
"unique-id",
"scuid",
"identifier",
"uuid",
"slug",
"fingerprint",
"timestamp",
"distributed-systems",
"id-generator",
"lightweight-id",
"base36",
"collision-resistant",
"horizontal-scaling",
"high-performance",
"ids-optimized"
]
classifiers = [
# Intended audience
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
# Topics
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Utilities",
"Topic :: System :: Distributed Computing",
# License
"License :: OSI Approved :: MIT License",
# Supported Python versions
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]