-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
43 lines (39 loc) · 1.02 KB
/
setup.cfg
File metadata and controls
43 lines (39 loc) · 1.02 KB
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
[metadata]
name = aliveos_py
author = Andrei Gramakov
author_email = mail@agramakov.me
version = 0.2.0
url = https://github.com/an-dr/aliveos_py
description = Python package used by AliveOS (https://github.com/an-dr/aliveos). The package contains addresses of devices, command codes, hardware interfaces, etc.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = robot, zakhar, robotics, aliveos
license = MIT
license-file = LICENSE
requires-dist = setuptools
classifiers =
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Operating System :: Unix
Framework :: Robot Framework :: Library
[options]
zip_safe = False
include_package_data = True
package_dir = src
packages = find:
[options.extras_require]
dev = setupext-janitor
[options.packages.find]
where = src
[flake8]
max-line-length = 120
max-complexity = 10
ignore = F405
per-file-ignores =
*/__init__.py:F401,F403
exclude =
.git
__pycache__
docs/source/conf.py
build
dist