-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (56 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=69,<77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flue"
version = "1.0.31"
description = "Local scripting bridges for controlling professional creative software from a shell agent."
readme = { file = "README_PYPI.md", content-type = "text/markdown" }
requires-python = ">=3.10"
authors = [
{ name = "Creative Adapters" }
]
maintainers = []
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"pywin32>=306; platform_system == 'Windows'"
]
[project.scripts]
flue = "flue.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = [
"*.md",
"*.txt",
"docs/*.md",
"docs/*.txt",
"known-issues.md",
"examples/*",
"cep/**/*",
"addon/*",
"inprocess/*",
"package/**/*",
]
[tool.setuptools.packages.find]
where = ["."]
include = [
"flue",
"flue.*",
"bridges",
"shared",
"tools",
"adapters",
"adapters.*"
]