-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (38 loc) · 1.35 KB
/
setup.py
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
# -*- coding: utf-8 -*-
"""The setup script."""
import sys
from setuptools import setup, find_packages
with open("README.md") as f:
description = f.read()
setup(
name="sockio",
author="Jose Tiago Macara Coutinho",
author_email="[email protected]",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)"
],
description="Concurrency agnostic socket API",
license="LGPL-2.1",
long_description=description,
long_description_content_type="text/markdown",
keywords="socket, asyncio",
packages=find_packages(include=["sockio"]),
url="https://tiagocoutinho.github.io/sockio/",
project_urls={
"Documentation": "https://tiagocoutinho.github.io/sockio/",
"Source": "https://github.com/tiagocoutinho/sockio/",
},
version="0.15.0",
python_requires=">=2.7",
zip_safe=True,
)