File: setup.cfg

package info (click to toggle)
python-portpicker 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: python: 1,119; makefile: 21; sh: 7
file content (50 lines) | stat: -rw-r--r-- 1,579 bytes parent folder | download
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
[metadata]
name = portpicker
version = 1.6.0
maintainer = Google LLC
maintainer_email = greg@krypto.org
license = Apache 2.0
license_files = LICENSE
description = A library to choose unique available network ports.
url = https://github.com/google/python_portpicker
long_description = Portpicker provides an API to find and return an available
	network port for an application to bind to.  Ideally suited for use from
	unittests or for test harnesses that launch local servers.
	
	It also contains an optional portserver that can be used to coordinate
	allocation of network ports on a single build/test farm host across all
	processes willing to use a port server aware port picker library such as
	this one.
classifiers = 
	Development Status :: 5 - Production/Stable
	License :: OSI Approved :: Apache Software License
	Intended Audience :: Developers
	Programming Language :: Python
	Programming Language :: Python :: 3
	Programming Language :: Python :: 3.7
	Programming Language :: Python :: 3.8
	Programming Language :: Python :: 3.9
	Programming Language :: Python :: 3.10
	Programming Language :: Python :: 3.11
	Programming Language :: Python :: 3.12
	Programming Language :: Python :: Implementation :: CPython
	Programming Language :: Python :: Implementation :: PyPy
platforms = POSIX, Windows
requires = 

[options]
install_requires = psutil
python_requires = >= 3.6
package_dir = 
	=src
py_modules = portpicker,portserver
#scripts = src/portserver.py

[options.entry_points]
console_scripts =
    portserver = portserver:main

[egg_info]
tag_build = 
tag_date = 0