-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "formation-studio"
description = "Simplify GUI development in python"
readme = "README.md"
authors = [
{name = "Emmanuel Obara", email = "[email protected]"},
]
requires-python = ">=3.7"
keywords = ["formation", "gui", "graphical-user-interface", "drag drop", "tkinter", "hoverset", "python"]
license = {text = "MIT"}
dynamic = ["version"]
dependencies = [
"pyscreenshot; sys_platform != 'win32' and sys_platform != 'darwin'",
"Pillow",
"platformdirs",
"python-tkdnd >= 0.2.1",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Software Development :: User Interfaces",
"Operating System :: OS Independent"
]
[project.urls]
Documentation = "https://formation-studio.readthedocs.io/en/latest/"
Issues = "https://github.com/ObaraEmmanuel/Formation/issues"
Source = "https://github.com/ObaraEmmanuel/Formation"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["*.tests*", "venv"]
namespaces = false
[tool.setuptools.package-data]
"hoverset.data" = ["image.*", "locale/*/LC_MESSAGES/*.mo"]
"hoverset.ui" = ["themes/*", "*.tcl"]
studio = ["resources/images/*", "resources/locale/*/LC_MESSAGES/*.mo"]
[project.scripts]
formation-studio = "studio.launcher:main"
formation-cli = "studio.cli:main"
formation-dbg = "studio.debugtools.hook:main"
[tool.setuptools.dynamic]
version = {attr = "formation.__version__"}
[project.optional-dependencies]
lxml = ["lxml"]
docs = ["Sphinx==4.0.3", "sphinx-rtd-theme==1.0.0"]