Browse Source

Improved project structure

pull/644/head
Miguel Grinberg 4 years ago
parent
commit
98c7ac23f2
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 6
      pyproject.toml
  2. 39
      setup.cfg
  3. 61
      setup.py
  4. 4
      src/socketio/__init__.py
  5. 0
      src/socketio/asgi.py
  6. 0
      src/socketio/asyncio_aiopika_manager.py
  7. 0
      src/socketio/asyncio_client.py
  8. 0
      src/socketio/asyncio_manager.py
  9. 0
      src/socketio/asyncio_namespace.py
  10. 0
      src/socketio/asyncio_pubsub_manager.py
  11. 0
      src/socketio/asyncio_redis_manager.py
  12. 0
      src/socketio/asyncio_server.py
  13. 0
      src/socketio/base_manager.py
  14. 0
      src/socketio/client.py
  15. 0
      src/socketio/exceptions.py
  16. 0
      src/socketio/kafka_manager.py
  17. 0
      src/socketio/kombu_manager.py
  18. 0
      src/socketio/middleware.py
  19. 0
      src/socketio/namespace.py
  20. 0
      src/socketio/packet.py
  21. 0
      src/socketio/pubsub_manager.py
  22. 0
      src/socketio/redis_manager.py
  23. 0
      src/socketio/server.py
  24. 0
      src/socketio/tornado.py
  25. 0
      src/socketio/zmq_manager.py
  26. 3
      tox.ini

6
pyproject.toml

@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"

39
setup.cfg

@ -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

61
setup.py

@ -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()

4
socketio/__init__.py → src/socketio/__init__.py

@ -27,9 +27,7 @@ else: # pragma: no cover
AsyncRedisManager = None
AsyncAioPikaManager = None
__version__ = '5.3.1dev'
__all__ = ['__version__', 'Client', 'Server', 'BaseManager', 'PubSubManager',
__all__ = ['Client', 'Server', 'BaseManager', 'PubSubManager',
'KombuManager', 'RedisManager', 'ZmqManager', 'KafkaManager',
'Namespace', 'ClientNamespace', 'WSGIApp', 'Middleware']
if AsyncServer is not None: # pragma: no cover

0
socketio/asgi.py → src/socketio/asgi.py

0
socketio/asyncio_aiopika_manager.py → src/socketio/asyncio_aiopika_manager.py

0
socketio/asyncio_client.py → src/socketio/asyncio_client.py

0
socketio/asyncio_manager.py → src/socketio/asyncio_manager.py

0
socketio/asyncio_namespace.py → src/socketio/asyncio_namespace.py

0
socketio/asyncio_pubsub_manager.py → src/socketio/asyncio_pubsub_manager.py

0
socketio/asyncio_redis_manager.py → src/socketio/asyncio_redis_manager.py

0
socketio/asyncio_server.py → src/socketio/asyncio_server.py

0
socketio/base_manager.py → src/socketio/base_manager.py

0
socketio/client.py → src/socketio/client.py

0
socketio/exceptions.py → src/socketio/exceptions.py

0
socketio/kafka_manager.py → src/socketio/kafka_manager.py

0
socketio/kombu_manager.py → src/socketio/kombu_manager.py

0
socketio/middleware.py → src/socketio/middleware.py

0
socketio/namespace.py → src/socketio/namespace.py

0
socketio/packet.py → src/socketio/packet.py

0
socketio/pubsub_manager.py → src/socketio/pubsub_manager.py

0
socketio/redis_manager.py → src/socketio/redis_manager.py

0
socketio/server.py → src/socketio/server.py

0
socketio/tornado.py → src/socketio/tornado.py

0
socketio/zmq_manager.py → src/socketio/zmq_manager.py

3
tox.ini

@ -12,6 +12,7 @@ python =
[testenv]
commands=
pip install -e .
pytest -p no:logging --cov=socketio --cov-branch --cov-report=term-missing
deps=
pytest
@ -21,7 +22,7 @@ deps=
deps=
flake8
commands=
flake8 --exclude=".*" --ignore=W503,E402,E722 socketio tests
flake8 --exclude=".*" --ignore=W503,E402,E722 src/socketio tests
[testenv:docs]
changedir=docs

Loading…
Cancel
Save