-
-
Notifications
You must be signed in to change notification settings - Fork 595
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82cc2cb
commit 98c7ac2
Showing
26 changed files
with
50 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[metadata] | ||
name = python-socketio | ||
version = 5.3.1.dev0 | ||
author = Miguel Grinberg | ||
author_email = [email protected] | ||
description = Socket.IO server and client for Python | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/miguelgrinberg/python-socketio | ||
project_urls = | ||
Bug Tracker = https://github.com/miguelgrinberg/python-socketio/issues | ||
classifiers = | ||
Environment :: Web Environment | ||
Intended Audience :: Developers | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
package_dir = | ||
= src | ||
packages = find: | ||
python_requires = >=3.6 | ||
install_requires = | ||
bidict >= 0.21.0 | ||
python-engineio >= 4.1.0 | ||
|
||
[options.packages.find] | ||
where = src | ||
|
||
[options.extras_require] | ||
client = | ||
requests >= 2.21.0 | ||
websocket-client >= 0.54.0 | ||
asyncio_client = | ||
aiohttp >= 3.4 | ||
websockets >= 7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,3 @@ | ||
""" | ||
python-socketio | ||
--------------- | ||
import setuptools | ||
|
||
Socket.IO server. | ||
""" | ||
import re | ||
import sys | ||
from setuptools import setup | ||
|
||
with open('socketio/__init__.py', 'r') as f: | ||
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', | ||
f.read(), re.MULTILINE).group(1) | ||
|
||
with open('README.md', 'r') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='python-socketio', | ||
version=version, | ||
url='http://github.com/miguelgrinberg/python-socketio/', | ||
license='MIT', | ||
author='Miguel Grinberg', | ||
author_email='[email protected]', | ||
description='Socket.IO server', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
packages=['socketio'], | ||
zip_safe=False, | ||
include_package_data=True, | ||
platforms='any', | ||
install_requires=[ | ||
'bidict>=0.21.0', | ||
'python-engineio>=4.1.0', | ||
], | ||
extras_require={ | ||
'client': [ | ||
'requests>=2.21.0', | ||
'websocket-client>=0.54.0', | ||
], | ||
'asyncio_client': [ | ||
'aiohttp>=3.4', | ||
'websockets>=7.0', | ||
] | ||
}, | ||
tests_require=[ | ||
'mock', | ||
], | ||
test_suite='tests' if sys.version_info >= (3, 0) else 'tests.common', | ||
classifiers=[ | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
] | ||
) | ||
setuptools.setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters