-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.25 KB
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
# This project use the `src` layout
# See: https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
# Build system configuration
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# Project metadata configuration
[project]
name = "scapex"
version = "1.0.2"
authors = [
{ name="Pierre Ayoub", email="pierreay@proton.me" },
]
description = "The command-line Inkscape eXporter, Makefile and LaTeX friendly"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities"
]
license = "GPL-3.0-only"
license-files = ["LICEN[CS]E*"]
# If any dependencies are added in the future, put them here
# dependencies = [
# "click",
# "colorlog"
# ]
[project.urls]
Homepage = "https://github.com/pierreay/scapex"
Issues = "https://github.com/pierreay/scapex/issues"
# Scripts configuration
[project.scripts]
# Will create a `scapex` Bash script, targeting
# -> The `scapex` package
# -> The `cli` module
# -> The `main()` function
scapex = "scapex.cli:main"
# Additional data
# https://setuptools.pypa.io/en/stable/userguide/datafiles.html
[tool.setuptools.package-data]
"scapex.zsh" = ["_scapex"]