-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
62 lines (59 loc) · 1.92 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
requires = [
"gevent>=1.3.7",
"ws4py>=0.5.1",
"marshmallow>=3.0.0",
"python-dateutil>=2.7.5",
"pyramid>=1.9.2",
"pyramid_jinja2>=2.7",
"pyramid_apispec>=0.4.0",
"itsdangerous==1.1.0",
"requests>=2.20.0",
]
setup(
name="channelstream",
version="0.7.1",
description="Websocket server supporting channels/users communication",
keywords="websockets async communication chat notification django flask pyramid",
url="https://github.com/Channelstream/channelstream",
classifiers=[
"Framework :: Django",
"Framework :: Flask",
"Framework :: Pyramid",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Conferencing",
],
author="Marcin Lulek",
author_email="[email protected]",
long_description=long_description,
license="BSD",
long_description_content_type="text/markdown",
zip_safe=True,
packages=find_packages(),
include_package_data=True,
install_requires=requires,
python_requires=">=3.6",
setup_requires=["pytest-runner"],
extras_require={
"dev": ["coverage", "pytest", "pyramid", "tox", "mock", "webtest", "mypy"],
"lint": ["black"],
},
entry_points={
"console_scripts": [
"channelstream = channelstream.cli.start:main",
"channelstream_utils = channelstream.cli.utils:main",
]
},
)