-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.21 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
# Doc:
# https://hatch.pypa.io/latest/config/build/
#
# Examples:
# https://github.com/pypa/hatch/blob/master/pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "greenpak"
version = "0.0.28"
authors = [
{ name="Zapta", email="[email protected]" },
]
description = "An easy to use Python API for programming and accessing Renesas's GreenPak SPLD devices."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
]
dependencies = [
"i2c_adapter >=0.0.4",
"i2cdriver >=1.0.1",
"intelhex>=2.3.0",
"smbus2==0.4.3",
]
[tool.hatch.build.targets.sdist]
# NOTE: The package directory below must match the project name above.
include = [
"LICENSE",
"/src/greenpak",
]
# NOTE: root .gitignore can't be excluded per
# https://github.com/pypa/hatch/discussions/368
exclude = [
".gitignore",
".vscode",
".*.sh",
]
[project.urls]
"Homepage" = "https://github.com/zapta/greenpak"
"Documentation" = "https://greenpak.readthedocs.io/en/latest/"
"Bug Tracker" = "https://github.com/zapta/greenpak/issues"