forked from bashkirtsevich-llc/aioudp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 731 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="aio-udp-server",
version="0.0.7",
description="Asyncio UDP server with traffic throttling",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=["Programming Language :: Python"],
keywords="UDP asyncio UDPserver throttling throttler",
author="D.Bashkirtsevich",
author_email="bashkirtsevich@gmail.com",
url="https://github.com/bashkirtsevich-llc/aioudp",
license="GPL3 License",
include_package_data=True,
zip_safe=True,
packages=find_packages("src"),
package_dir={"": "src"},
python_requires=">=3.6.*"
)