-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 798 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
[project]
name = "commodity_data"
version = "0.4.4"
# license = {file = "LICENSE.txt"}
authors = [
{ email = "oneirag@yahoo.es", name = "Oscar Neira" }
]
readme = "README.md"
requires-python = ">=3.8"
description = "Tool to download commodity prices from Omip, Barchart and EEX"
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
# scanning for namespace packages is true by default in pyproject.toml, so
# you do NOT need to include the following line.
namespaces = true
where = ["src"]
[project.urls] # Optional
"Homepage" = "https://github.com/Oneirag/commodity_data"
"Source" = "https://github.com/Oneirag/commodity_data"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"