diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 39aea64..86f0ebd 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "pallets/flask", + "name": "pallets-eco/flask-rq", "image": "mcr.microsoft.com/devcontainers/python:3.8", "customizations": { "vscode": { diff --git a/.devcontainer/on-create-command.sh b/.devcontainer/on-create-command.sh index 67f9d04..790e7dc 100644 --- a/.devcontainer/on-create-command.sh +++ b/.devcontainer/on-create-command.sh @@ -2,5 +2,5 @@ set -e python3 -m venv --upgrade-deps .venv . .venv/bin/activate -pip install -r requirements/dev.in +pip install -r requirements/dev.txt pip install -e . \ No newline at end of file diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 736bfed..0000000 --- a/setup.cfg +++ /dev/null @@ -1,6 +0,0 @@ -[build_sphinx] -source-dir = docs/ -build-dir = docs/_build - -[upload_sphinx] -upload-dir = docs/_build/html \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index 0ac920e..0000000 --- a/setup.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -Flask-RQ -======== - -RQ (Redis Queue) integration for Flask applications - - -Resources ---------- - -- `Documentation `_ -- `Issue Tracker `_ -- `Code `_ -- `Development Version - `_ -""" - -from setuptools import setup - -setup( - name='Flask-RQ', - version='0.2', - url='http://packages.python.org/Flask-RQ/', - license='MIT', - author='Matthew Wright', - author_email='matt@nobien.net', - description='RQ (Redis Queue) integration for Flask applications', - long_description=__doc__, - py_modules=['flask_rq'], - zip_safe=False, - platforms='any', - install_requires=['Flask', 'rq'], - classifiers=[ - 'Development Status :: 4 - Beta', - 'Environment :: Web Environment', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', - 'Topic :: Software Development :: Libraries :: Python Modules' - ] -)