-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.1 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
[project]
name = "imbric"
version = "0.9.0-alpha"
description = "Photo-first file manager with Masonry layout for GNOME"
authors = [{name = "Imbric Developers"}]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["file-manager", "photos", "gnome", "pyside6", "masonry"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Desktop Environment :: Gnome",
]
dependencies = [
"PySide6",
"psutil",
]
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
]
[project.scripts]
imbric = "main:main"
[project.urls]
Homepage = "https://github.com/dragon-Elec/Imbric"
Repository = "https://github.com/dragon-Elec/Imbric"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["core*", "application*"]