-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 934 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 934 Bytes
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
[build-system]
requires = ["setuptools >= 61.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["creativelib"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools_scm]
write_to = "src/creativelib/_version.py" # Path to the generated version file
[project]
name = "creativelib"
dynamic = ["version"]
dependencies = [
"numpy",
"setproctitle",
]
requires-python = ">= 3.10"
authors = [
{name = "Yan Yan", email = "yan.yan@tusen.ai"},
]
maintainers = [
{name = "Yan Yan", email = "yan.yan@tusen.ai"},
]
readme = "README.md"
license = {text = "MIT License"}
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]