-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (40 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
40 lines (40 loc) · 1.37 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
[project]
name = "snowflake-tool"
version = "2.0.3"
authors = [{ name = "coder785", email = "778913224@qq.com" }]
description = "Simple snowflake id generator"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
keywords = ["python", "snowflake", "id generator"]
requires-python = ">=3.9"
dependencies = [
"pytest>=8.4.2",
"setuptools>=77.0.3",
"twine>=6.2.0",
]
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/785Coder/snowflake-tool"
Repository = "https://github.com/785Coder/snowflake-tool"
[tool.setuptools.packages.find]
where = ["."]