-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 913 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 913 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
37
38
39
40
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "nstm"
version = "0.1"
dynamic = ["dependencies"]
#dynamic = ["version"]
authors = [
{ name="Ruiming Cao", email="rcao@berkeley.edu" }
]
description = "Neural space-time model for dynamic scene modeling and image reconstruction"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-3-Clause",
"Operating System :: POSIX :: Linux",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
dev = [
]
[project.urls]
"Homepage" = "https://github.com/rmcao/nstm"
#[tool.setuptools_scm]
#write_to = "nstm/_version.py"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["nstm*"]