-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use setup.cfg instead of setup.py. (#37)
And drop support for Python 3.6.
- Loading branch information
Showing
7 changed files
with
51 additions
and
64 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
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
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
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=42.0.0", "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 |
---|---|---|
@@ -1,6 +1,38 @@ | ||
[metadata] | ||
name = celery-batches | ||
version = 0.6dev | ||
description = Experimental task class that buffers messages and processes them as a list. | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
author = Patrick Cloke | ||
author_email = [email protected] | ||
url = https://github.com/clokep/celery-batches | ||
download_url = https://github.com/clokep/celery-batches | ||
keywords = task, job, queue, distributed, messaging, actor | ||
license = BSD | ||
license_file = LICENSE | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
License :: OSI Approved :: BSD License | ||
Topic :: System :: Distributed Computing | ||
Topic :: Software Development :: Object Brokering | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Programming Language :: Python :: Implementation :: PyPy | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
packages = | ||
celery_batches | ||
install_requires = celery>=4.4,<5.3 | ||
python_requires = >=3.7 | ||
|
||
[flake8] | ||
# Don't use a strict line limit if it makes the code more readable. | ||
ignore = E501 | ||
|
||
[metadata] | ||
license_file = LICENSE |
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