-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
98 lines (87 loc) · 2.47 KB
/
setup.cfg
File metadata and controls
98 lines (87 loc) · 2.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[bumpversion]
commit = True
current_version = 0.0.0
tag = True
tag_name = {new_version}
[bumpversion:file:celery_task_plus/__init__.py]
[metadata]
name = celery-task-plus
version = attr: celery_task_plus.__version__
author = Nine More Minutes, Inc.
author_email = support@ninemoreminutes.com
description = Celery task enhancements to lock tasks and capture results.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = django, celery, task
license = BSD
url = https://github.com/ninemoreminutes/celery-task-plus/
project_urls =
Documentation = https://github.com/ninemoreminutes/celery-task-plus/
Source = https://github.com/ninemoreminutes/celery-task-plus/
Tracker = https://github.com/ninemoreminutes/celery-task-plus/issues
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
packages = celery_task_plus
include_package_data = True
setup_requires =
pytest-runner
setuptools-twine
tests_require =
django>=2.2
pytest
pytest-cov
pytest-django
pytest-flake8
install_requires =
django>=2.2
celery[redis]
python-redis-lock
[check]
metadata = True
restructuredtext = True
strict = True
[clean]
all = True
[egg_info]
tag_build = .dev
[bdist_wheel]
universal = 1
[aliases]
dev_build = clean test egg_info sdist bdist_wheel twine_check
release_build = clean test egg_info -b "" sdist bdist_wheel twine_check
test = pytest
ship_it = release_build twine_upload
[pycodestyle]
ignore = E501
exclude = .git,.tox,build,dist
[flake8]
ignore = E501
exclude = .git,.tox,build,dist
[tool:pytest]
DJANGO_SETTINGS_MODULE = test_project.settings
python_files = test*.py
testpaths = celery_task_plus test_project
norecursedirs = .git .tox build dist
flake8-ignore = E501
addopts = --reuse-db --nomigrations --cache-clear --flake8 --cov celery_task_plus --cov-append --cov-report term-missing