forked from deepbrook/Pysher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.27 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.27 KB
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
VERSION = "1.0.8"
def readme():
with open('README.md', encoding="utf8") as f:
return f.read()
setup(
name="Pysher",
version=VERSION,
description="Pusher websocket client for python, based on Erik Kulyk's PythonPusherClient",
long_description=readme(),
long_description_content_type='text/markdown',
keywords="pusher websocket client",
author="Nils Diefenbach",
author_email="nlsdfnbch.foss@kolabnow.com",
license="MIT",
url="https://github.com/deepbrook/Pysher",
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
"websocket-client!=0.49",
"requests>=2.26.0",
],
tests_requires=["autobahn"],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
'Topic :: Software Development :: Libraries ',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)