generated from farm-ng/amiga-app-template-kivy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
46 lines (41 loc) · 985 Bytes
/
setup.cfg
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
# NOTE: update the `[project]` section with your app details
[metadata]
name = camera_streamer
version = 0.0.1
author = Farm-ng, Inc.
author_email = [email protected]
url = https://github.com/farm-ng/amiga-app-template
download_url = https://github.com/farm-ng/amiga-app-template
keywords = robotics, open-source
license_files = LICENSE
description = Template app for the Amiga robot
classifiers =
Programming Language :: Python :: 3
Topic :: Software Development
Framework :: Robot Framework
# NOTE: update the the requirements for your app
[options]
python_requires = >=3.6
setup_requires =
wheel
install_requires =
wheel
kivy
farm_ng_amiga
PyTurboJPEG
tests_require =
pytest
# NOTE: do not touch this path unless you know what you are doing
package_dir =
= libs
[options.extras_require]
dev =
pytest
mypy
pre-commit>=2.0
[flake8]
max-line-length = 120
[mypy]
files = libs/, src/
pretty = True
ignore_missing_imports = True