-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (42 loc) · 1.05 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
[project]
name = "ucuu"
version = "0.1.1"
description = "A lightweight and extensible Python utility toolkit for productivity and automation."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
"rich>=14.0.0",
"black>=24.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
authors = [
{ name = "wZuck", email = "wzuck.wang@gmail.com" }
]
[project.urls]
homepage = "https://wzuck.github.io/ucuu/"
repository = "https://github.com/wZuck/ucuu"
documentation = "https://github.com/wZuck/ucuu"
pypi = "https://pypi.org/project/ucuu/"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.pre-commit]
[project.optional-dependencies]
docs = [
"ghp-import>=2.1.0"
]
publish = [
"build>=1.0.0",
"twine>=4.0.0"
]
distributed = [
"torch>=1.10.0"
]