-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.49 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "OpenMASTER"
authors = [ # Sorted by name
{name = "Antonio Francisco Rodríguez Matas", email = "afrmatas@comillas.edu"},
{name = "Manuel Pérez Bravo", email = "mperezb@comillas.edu"},
]
description = ""
readme = "README.md"
requires-python = ">=3.10"
keywords = [""]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pandas>=1.5",
"pyomo~=6.5",
"openpyxl~=3.1",
"matplotlib~=3.7",
"PyYAML~=6.0",
"numpy~=1.21",
"pyinstaller~=5.7",
"pyinstaller-hooks-contrib~=2022.15",
"scipy~=1.7",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "openMASTER.__version__"}
# Needed only if src/ folder is not present
# [tool.setuptools.packages]
# find = {} # Scanning implicit namespaces is active by default
[project.optional-dependencies]
graphicTool = [ # Only for executing the notebooks (and visualization things)
"gunicorn",
"dash~=2.7",
"dash-bootstrap-components~=1.2",
"dash-core-components~=2.0",
"dash-html-components~=2.0",
"dash-table~=5.0",
"plotly~=5.18",
"nbformat~=5.9"
]
#[project.scripts]
#my-script = "my_package.module:function"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[tool.setuptools]
packages = ["openMASTER"]
package-dir = {"" = "src"}