-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
53 lines (45 loc) · 1.33 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
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bauh"
description = "Graphical interface to manage Linux applications (AppImage, Arch / AUR, Flatpak, Snap and Web)"
license = {file = "LICENSE"}
requires-python = ">=3.6"
dynamic = ["version"]
readme = "README.md"
authors = [{name = "Vinicius Moreira", email = "vinicius_fmoreira@hotmail.com"}]
classifiers = [
'Topic :: Utilities',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: 3.11'
]
dependencies = [
"pyqt5 >= 5.12",
"requests >= 2.18",
"colorama >= 0.3.8",
"pyyaml >= 3.13",
"python-dateutil >= 2.7"
]
[project.optional-dependencies]
web = [
"lxml >= 4.2.0",
"beautifulsoup4 >= 4.7.0"
]
[project.scripts]
bauh = "bauh.app:main"
bauh-tray = "bauh.app:tray"
bauh-cli = "bauh.cli.app:main"
[project.urls]
Repository = "https://github.com/vinifmor/bauh"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "bauh.__version__"}
[tool.setuptools.packages.find]
exclude = ["tests.*", "tests"]