-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.19 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
[project]
name = "cityenergyanalyst"
description = "City Energy Analyst"
readme = "README.rst"
requires-python = "==3.8.*"
license = { file = "LICENSE" }
authors = [
{ name = "Architecture and Building Systems", email = "[email protected]" }
]
maintainers = [
{ name = "Reynold Mok", email = "[email protected]" }
]
dynamic = ["version"]
# All dependencies are determined in environment.yml
dependencies = []
[project.optional-dependencies]
dev = ["pytest"]
docs = ["setuptools", "mock"]
[project.urls]
"Homepage" = "https://cityenergyanalyst.com"
"Bug Reports" = "https://github.com/architecture-building-systems/CityEnergyAnalyst/issues"
"Source" = "https://github.com/architecture-building-systems/CityEnergyAnalyst"
[project.scripts]
cea = "cea.interfaces.cli.cli:main"
cea-config = "cea.interfaces.cli.cea_config:main"
cea-doc = "cea.interfaces.cli.cea_doc:main"
cea-dev = "cea.interfaces.cli.cea_dev:main"
cea-worker = "cea.worker:main"
cea-plot = "cea.plots.plot_cli:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["cea*"]
namespaces = false
[tool.setuptools.dynamic]
version = { attr = "cea.__version__" }