-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (38 loc) · 1.16 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
[build-system]
#requires = ["flit_core >=3.2,<4"]
#build-backend = "flit_core.buildapi"
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ft260"
description = " PyFT260: A Python driver and interface library for FTDI's FT260 I2C, UART, and GPIO functions "
version = "0.1.2"
authors = [
{name = "Roman Dvorak", email = "[email protected]"}
]
maintainers = [
{name = "Roman Dvorak", email = "[email protected]"}
]
requires-python = ">=3.6"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
readme = "README.md"
#dynamic = ["version"]
dependencies = [
"hidapi",
]
[tool.setuptools.dynamic]
version = {attr = "ft260.__version__"}
[project.urls]
project = "https://www.mlab.cz"
documentation = "https://github.com/MLAB-project/PyFT260"
github = "https://github.com/MLAB-project/PyFT260"
homepage = "https://github.com/MLAB-project/PyFT260"
issues = "https://github.com/MLAB-project/PyFT260/issues"