-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
71 lines (59 loc) · 1.5 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
[tool.poetry]
name = "typeid-python"
version = "0.3.1"
description = "Python implementation of TypeIDs: type-safe, K-sortable, and globally unique identifiers inspired by Stripe IDs"
authors = ["Murad Akhundov <akhundov1murad@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/akhundMurad/typeid-python"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"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",
"Operating System :: OS Independent",
]
keywords = ["typeid", "uuid", "uuid6", "guid"]
packages = [{ include = "typeid" }]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/examples",
"/deps",
"/htmlcov",
"/tests",
"mkdocs-plugins.code-workspace",
"Makefile",
"CODE_OF_CONDUCT.md",
".isort.cfg",
".gitignore",
".flake8",
"junit",
"requirements.txt",
"mypy.ini",
"pytest.ini",
".flake8",
"pytest.ini",
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
uuid6 = ">=2023.5.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.2"
black = "^23.3.0"
flake8 = "^5.0.0"
isort = "^5.12.0"
mypy = "^1.3.0"
requests = "^2.31.0"
pyyaml = "^6.0"
[tool.poetry.extras]
cli = ["click"]
[tool.pylint]
disable = ["C0111", "C0116", "C0114", "R0903"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"