-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 831 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
30
31
32
33
34
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "CANedge-HTTP"
version = "0.0.3"
authors = [
{ name="CSS Electronics" },
{ email="contact@csselectronics.com" },
]
description = "Python module for accessing CANEdge filesystem via HTTP"
readme = "README.md"
license = { text = "MIT" }
keywords = ["CSS Electronics", "CANEdge"]
requires-python = ">=3.7"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests >= 2.32.3",
]
[project.scripts]
ce_http_downloader = "canedge_http.tools.tool_download_log_files:main"
[project.urls]
"Homepage" = "https://www.csselectronics.com/"
[tool.hatch.version]
source = "vcs"
raw-options = { root="../.." }