-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.3 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "controku"
version = "1.1.0"
dependencies = [
"requests",
"ssdpy",
]
authors = [ {name="Ben Westover", email="[email protected]"}, ]
description = "Control Roku devices from the comfort of your own desktop"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Communications",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
keywords = ["roku", "remote"]
[project.optional-dependencies]
gui = [
"PyGObject",
"appdirs",
]
[project.urls]
"Homepage" = "https://github.com/benthetechguy/controku"
"Bug Tracker" = "https://github.com/benthetechguy/controku/issues"
[project.gui-scripts]
controku = "controku.main:main"
[tool.setuptools.packages.find]
include = ["controku*"]
[tool.setuptools.package-data]
controku = ["images/controku.png", "images/hicolor/scalable/actions/*"]