forked from guanqun/asyncwebsockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 843 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
26
27
28
29
30
31
32
33
34
import sys
from pathlib import Path
from setuptools import setup
if sys.version_info[0:2] < (3, 6):
raise RuntimeError("This package requires Python 3.6+.")
setup(
name="asyncwebsockets",
use_scm_version={
"version_scheme": "guess-next-dev",
"local_scheme": "dirty-tag"
},
packages=[
"asyncwebsockets"
],
url="https://github.com/SunDwarf/asyncwebsockets",
license="MIT",
author="Laura Dickinson",
author_email="[email protected]",
description="A websocket library for curio + trio",
long_description=Path(__file__).with_name("README.rst").read_text(encoding="utf-8"),
setup_requires=[
"setuptools_scm",
"pytest-runner"
],
install_requires=[
"multio",
"wsproto>=0.11.0"
],
extras_require={},
python_requires=">=3.6",
)