-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
67 lines (58 loc) · 1.33 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = openvario-compman
version = 0.6.1.dev0
description = Competition Manager for OpenVario
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/kedder/openvario-compman
author = Andrey Lebedev
author_email = andrey.lebedev@gmail.com
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords = openvario tui competition igc xcsoar
project_urls =
[options]
package_dir = =src
packages = find:
python_requires = >=3.9, <4
install_requires =
urwid
aiohttp
requests
lxml
openvario-shell
data_files =
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
compman=compman.main:main
ovshell.extensions =
compman=compman.ovshell:extension
[options.extras_require]
dev =
black
mypy
test =
pytest
pytest-coverage
pytest-asyncio
pytest-mock
[mypy]
ignore_missing_imports = True
[isort]
profile = black
multi_line_output = 9
[check-manifest]
ignore =
Pipfile*
screenshots/*
sample.env
.coveralls.yml
Makefile