-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.16 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "obs_cr"
[project]
name = "obs-cr"
authors = [{name = "Richard Darst"}] # FIXME
readme = "README.md"
license = {file = "LICENSE"}
# https://pypi.org/classifiers/
classifiers = [
"License :: OSI Approved :: MIT License",
]
#keywords = ["sphinx-extension"]
requires-python = ">=3.0"
dynamic = ["version", "description"]
dependencies = [
"simpleaudio",
"obsws-python",
"pillow",
"tkinter-tooltip",
]
[project.optional-dependencies]
test = [
"pytest",
]
[project.scripts]
obs-cr-control = "obs_cr.control:main"
obs-cr-preview = "obs_cr.preview:main"
[project.urls]
Repository = "https://github.com/coderefinery/obs-coderefinery-control/"
#Documentation = "https://example.com/"
# https://flit.pypa.io/en/latest/upload.html
# flit build
# You need to configure a .pypirc file for test upload, or use environment variables:
# https://flit.pypa.io/en/latest/upload.html#using-pypirc
# flit publish --repository testpypi
# or: FLIT_INDEX_URL=https://test.pypi.org/legacy/ FLIT_USERNAME=xxx and FLIT_PASSWORD=xxx flit publish
# flit publish