-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.15 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
[project]
name = "rayforge"
dynamic = ["version"]
authors = [
{ name="Samuel Abels", email="knipknap@gmail.com" },
]
description = "A desktop application for laser cutting and engraving"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Manufacturing",
]
[project.urls]
"Homepage" = "https://github.com/barebaric/rayforge"
"Bug Tracker" = "https://github.com/barebaric/rayforge/issues"
[project.scripts]
rayforge = "rayforge.app:main"
[build-system]
requires = [
"setuptools >= 40.9.0", "setuptools-git-versioning", "pytest"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["rayforge*"]
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.data-files]
"share/applications" = ["data/com.barebaric.rayforge.desktop"]
"share/metainfo" = ["data/com.barebaric.rayforge.metainfo.xml"]
"share/icons/hicolor/scalable/apps" = ["data/com.barebaric.rayforge.svg"]