-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.39 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
46
47
48
49
50
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "deer-ues-tool"
version = "0.1.0"
description = "A Python package for expediting unit energy savings calculations from DEER prototypes"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "Apache-2.0"}
authors = [
{name = "Kelsey Yen", email = "kyen@solaris-technical.com"},
{name = "Nicholas Fette", email = "nfette@solaris-technical.com"},
]
maintainers = [
{name = "Solaris Technical LLC"},
]
keywords = ["DEER", "energy", "post-processing", "savings", "EnergyPlus"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas",
]
[project.optional-dependencies]
ui = ["gooey"]
dev = ["gooey"]
[project.urls]
Homepage = "https://github.com/simularis/deer-ues-tool"
Repository = "https://github.com/simularis/deer-ues-tool.git"
[tool.setuptools]
packages = ["deer_ues_tool"]
[tool.setuptools.package-data]
deer_ues_tool = [
"commercial/*.sql",
"residential/*.sql",
"lookup/*.csv",
]