-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 848 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="stevesockets",
version="0.0.8",
description="A simple socket and websocket server package",
long_description="",
url="https://github.com/sjb9774/stevesockets",
author="Stephen Biston",
author_email="sjb9774@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
keywords="socket sockets websocket steve",
packages=find_packages(exclude=["tests"]),
install_requires=[],
extras_require={},
package_data={},
)