-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.11 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
[tool.poetry]
name = "desktop-parser"
version = "0.1.1"
description = "Parse .desktop files"
license = "GPL-3.0-or-later"
authors = ["0xMRTT <[email protected]>"]
maintainers = ["0xMRTT <[email protected]>"]
readme = "README.md"
homepage = "https://desktopcreatorteam.github.io/"
documentation = "https://desktopcreatorteam.github.io/"
keywords = ["desktop", "linux", "freedesktop", "parser", "file", "format", "standard"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
repository = "https://github.com/DesktopCreatorTeam/DesktopCreator"
packages = [{include = "desktop_parser"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/DesktopCreatorTeam/DesktopCreator/issues"
[tool.poetry.dependencies]
python = "^3.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"