-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
38 lines (34 loc) · 850 Bytes
/
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
[metadata]
name = socket-proxy
version = attr: socket_proxy.base.VERSION
author = Florian Kantelberg
author_email = [email protected]
description = Proxy TCP ports of local systems
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
keywords = proxy socket network
url = https://github.com/fkantelberg/socket-proxy
classifiers=
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
[options]
include_package_data = True
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
typing_extensions
extra_require =
api
event
[options.entry_points]
console_scripts =
socket_proxy = socket_proxy.__main__:main
[options.extras_require]
api = aiohttp
event = aiohttp
[options.packages.find]
where = src