forked from derpston/python-socketcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 757 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'socketcache'
, version = '0.1.1'
, description = 'Maintains a cache of socket objects'
, long_description = """A simple pure python cache of UDP socket objects, supporting a \
custom TTL, IPv{4,6} and random balancing. Intended to assist in sending a lot of UDP packets \
to a host addressed by FQDN without burdening the local resolver. The local machine may not \
have a caching resolver at all, making it a good idea for the application to manage a cache itself."""
, author = 'Derp Ston'
, author_email = 'derpston+pypi@sleepygeek.org'
, url = 'https://github.com/derpston/python-socketcache'
, packages = ['']
, package_dir = {'': 'src'}
)