-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 1.3 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
from codecs import open
from os import path
from setuptools import setup, find_packages
CURRENT_DIR = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_DIR, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name = "pywebsocket",
version = "1.0.6",
author = "Ege Bilecen",
description = "Websocket server written in Python.",
long_description = "Please see GitHub page for more information. (https://github.com/egebilecen/pywebsocket)",
long_description_content_type = "text/markdown",
url = "https://github.com/egebilecen/pywebsocket",
packages = find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
],
python_requires = '>=3.6',
py_modules = ["pywebsocket"],
install_requires = []
)