forked from socon-dev/socon-embedded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 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
[build-system]
requires = [
"setuptools",
"setuptools-scm[toml]>=6.2.3"
]
build-backend = "setuptools.build_meta"
[project]
name = "socon-embedded"
description = "Build/Flash tool plugin for socon"
authors = [
{name = "Stephane Capponi", email = "[email protected]"}
]
license = {text = "BSD-3-Clause"}
requires-python = ">=3.9"
keywords = [
"build",
"flasH",
"embedded",
"socon"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
repository = "https://github.com/socon-dev/socon-embedded"
[tool.setuptools.packages.find]
include = ["socon_embedded*"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
write_to = "socon_embedded/_version.py"