-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "the_rover"
version = "1.0.2"
authors = [{name = "Medhansh Choudhury", email = "sondad2008@gmail.com"},]
maintainers = [
{name = "Medhansh Choudhury", email = "sondad2008@gmail.com"},
{name = "Alex Bace", email = "alexbace2@gmail.com"},
]
description = "THE rover. Allows controlling Raspberry Pi \"rovers\" remotely and interactively from any OS's command line."
readme = "README.md"
requires-python = ">=3.0.0"
license = {text = "GNU Affero General Public License v3.0"}
keywords = ["the_rover", "the-rover", "rover"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
dependencies = [
"gpiozero",
"pigpio",
"keyboard",
"fabric",
]
[project.scripts]
the_rover = "the_rover:__main__"
[project.urls]
"Homepage" = "https://https://github.com/xboxone08/the_rover"
"Documentation" = "https://github.com/xboxone08/the_rover/blob/main/README.md"
"Issues" = "https://github.com/xboxone08/the_rover/issues"
"Releases" = "https://github.com/xboxone08/the_rover/releases"