-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (56 loc) · 1.42 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 = ubii-node-python
url = https://github.com/saggitar/ubii-node-python.git
author = Maximilian Schmidt
author_email = ga97lul@mytum.de
description = Ubi Interact Python Node
long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst
keywords = ubi-interact, ubii, distributed, vr, augmented
classifiers =
Programming Language :: Python :: 3
[options]
python_requires = >=3.7
install_requires =
importlib_metadata;python_version<"3.8"
backports.cached_property;python_version<"3.8"
typing_extensions;python_version<"3.8"
ubii-message-formats >= 0.3.0
codestare-async-utils >= 0.2.0
pyyaml
aiohttp
package_dir =
= src
packages = find_namespace:
include_package_data = True
[options.entry_points]
console_scripts =
ubii-client = ubii.cli.main:main [cli]
example-client = ubii.cli.main:info_log_client [cli]
[options.packages.find]
where = src
[options.extras_require]
cli =
argparse == 1.4.0
docs =
sphinx == 5.0.2
test =
pytest == 7.1.2
pytest-asyncio == 0.18.3
pandas
dev =
setuptools-changelog == 1.0.0
[changelog]
changelog_fragments_path = changelog.d
major_changes_types =
removal = Breaking Changes
minor_changes_types =
feature = New Features
patch_changes_types =
bugfix = Bug Fixes
doc = Documentation
misc = Miscellaneous
[build_sphinx]
source-dir = ./docs/source
build-dir = ./docs/build
warning-is-error = True
all-files = True