-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.34 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
[build-system]
#requires = ["hatchling"]
#build-backend = "hatchling.build"
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pygong"
dynamic = ["version"]
#version = "0.0.1"
authors = [
{name="gongwendong",email='[email protected]'},
]
maintainers = [
{name="gongwendong",email='[email protected]'},
]
description = "Supported for python dev common utils collection library."
readme = {file="README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.1"
keywords = ["python utils","python common"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"pint"
]
#[tool.setuptools.packages.find]
#where = [
# "src/pygong"
#]
#
#[tool.setuptools]
#package-dir = {"" = "src"}
#include-package-data = false
[tool.setuptools.dynamic]
version = {file = "src/pygong/pygong.VERSION"}
#version = {attr = "version"}
readme = {file = ["README.md"]}
[project.urls]
Homepage = "https://github.com/agodomen/pygong"
Documentation = "https://github.com/agodomen/pygong/blob/main/README_ZH.md"
Repository = "https://github.com/agodomen/pygong.git"
Issues = "https://github.com/agodomen/pygong/issues"
Changelog = "https://github.com/agodomen/pygong/blob/main/CHANGELOG.md"