-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (53 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "pfb-toolkit"
version = "0.1.11"
description = "Portable Framework for Building Applications - PFB-Toolkit"
readme = "README.md"
license = "MIT"
authors = [
"RobertoChiosa <roberto.chiosa@polito.it>"
]
maintainers = [
"RobertoChiosa <roberto.chiosa@polito.it>",
"RoccoGiudice <rocco.giudice@polito.it>"
]
homepage = "https://github.com/baeda-polito/portable-app-framework"
repository = "https://github.com/baeda-polito/portable-app-framework"
documentation = "https://github.com/baeda-polito/portable-app-framework" # todo change
keywords = ["energy", "data", "analysis", "pandas"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
]
packages = [
{ include = "portable_app_framework", from = "src" },
]
#include = [
# { path = "**/*.md", format = "portable_app_framework" },
# { path = "**/*.rq", format = "portable_app_framework" },
# { path = "**/*.ttl", format = "portable_app_framework" },
# { path = "**/*.yaml", format = "portable_app_framework" },
#]
[tool.poetry.scripts]
portable-app-framework = 'portable_app_framework:cli_entry_point'
[tool.poetry.dependencies]
python = "^3.11"
pytest = "^8.2.2"
pandas = "^2.2.2"
inquirer = "^3.3.0"
buildingmotif = "^0.2.0b0"
setuptools = "^65.7.0"
pyshacl = "0.21"
[tool.poetry.group.docs.dependencies]
jupyter-book = "^1.0.0"
matplotlib = "^3.9.0"
numpy = "^2.0.0"
pandas = "^2.2.2"
rdflib = "^6.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"