-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
65 lines (47 loc) · 1.31 KB
/
setup.cfg
File metadata and controls
65 lines (47 loc) · 1.31 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[metadata]
name = tinc_mesh
version = 0.1.3
requires_python = >=3.8
author = Andrei Pozolotin
author_email = andrei.pozolotin@gmail.com
summary = tinc mesh vpn
description_file = readme.md
description_content_type = text/markdown; charset=UTF-8
home-page = https://github.com/random-python/tinc_mesh
license = Apache-2
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: System :: Systems Administration
Topic :: Terminals
Topic :: Utilities
keywords =
tinc
mesh
systemd
[files]
[options]
packages =
tinc_mesh
tinc_mesh_test
package_dir =
tinc_mesh = src/main/tinc_mesh
tinc_mesh_test = src/test/tinc_mesh_test
[entry_points]
console_scripts =
# expose services for systemd
tinc_mesh_install = tinc_mesh.setup:service_install
tinc_mesh_uninstall = tinc_mesh.setup:service_uninstall
[pbr]
warnerrors = True
skip_authors = True
skip_git_sdist = False
skip_changelog = True