-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.6 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
65
66
67
68
69
70
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "roverpro"
version = "1.0.1"
description = "A Python driver for driving the Rover Robotics Rover Pro robot"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Trio"
]
license = "BSD-3-Clause"
repository = "https://github.com/RoverRobotics/roverpro-python"
authors = [
"Dan Rose <dan@digilabs.io>",
"Rover Robotics <info@roverrobotics.com>",
]
maintainers = [
"Dan Rose <dan@digilabs.io>"
]
readme = "README.md"
[tool.poetry.scripts]
pitstop = 'roverpro.pitstop:main'
[tool.poetry.dependencies]
python = "^3.6"
async_generator = "^1.10"
booty = "^0.3.0"
pyserial = "^3.4"
pytest = "^5.4.3"
pytest-trio = "^0.6.0"
trio = "^0.16.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
poetry-githooks = {git = "https://github.com/rotu/poetry-githooks"}
tox = "^3.15.2"
pyinstaller = "^3.6"
# pyinstaller assumes these dependencies are already installed:
macholib = {version = "^1.14", platform = "darwin"}
pywin32-ctypes = {version = "^0.2.0", platform = "win32"}
pefile = {version = "^2019.4.18", platform = "win32"}
pylint = "^2.5.3"
[tool.githooks]
pre-commit = "poetry run black ."
[tool.black]
line-length = 99
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py36,py37,py38
isolated_build = True
[testenv]
deps = pytest
commands = pytest
"""