-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.67 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
##############################################
# The MIT License (MIT)
# Copyright (c) 2017 Kevin Walchko
# see LICENSE for full details
##############################################
[tool.poetry]
name = "pycreate2"
version = "0.8.1"
description = "A library to control iRobot Create 2 with python"
authors = ["walchko <[email protected]>"]
readme = "readme.md"
license = "MIT"
homepage = "https://pypi.org/project/pycreate2/"
repository = 'https://github.com/MomsFriendlyRobotCompany/pycreate2'
# documentation = "http://..."
keywords = ['roomba','irobot', 'create 2', 'api', 'framework', 'library', 'robotics', 'robot']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
]
[tool.poetry.scripts]
create_monitor = "pycreate2.bin.create_monitor:main"
create_reset = "pycreate2.bin.create_reset:main"
create_shutdown = "pycreate2.bin.create_shutdown:main"
[tool.poetry.dependencies]
python = ">=3.8"
pyserial = "*"
colorama = "*"
simplejson = "*"
#importlib-metadata = {version="*", python="<3.8"}
[tool.poetry.dev-dependencies]
pytest = "*"
# [mypy-pi_servo_serial]
# ignore_missing_imports = True
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"