-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
68 lines (50 loc) · 1.08 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
68
[metadata]
name = data_pipe
version = 0.2.0
requires-python = >=3.8
author = Andrei Pozolotin
author-email = andrei.pozolotin@gmail.com
summary = Cross Thread Message Pipe
description-file = readme.md
description-content-type = text/markdown; charset=UTF-8
home-page = https://github.com/random-python/data_pipe
license = Apache-2
classifier =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.8
Topic :: Utilities
keywords =
cross
thread
process
message
pipe
memory
channel
trio
curio
asyncio
threading
multiprocessing
[files]
# none
[options]
packages =
data_pipe
data_pipe_test
package_dir =
data_pipe = src/main/data_pipe
data_pipe_test = src/test/data_pipe_test
[entry_points]
# none
console_scripts =
# none
[pbr]
warnerrors = True
skip_authors = True
skip_git_sdist = False
skip_changelog = True