-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pytest&pyproject.toml対応をやめて、setup.pyで実行するように戻し
- Loading branch information
1 parent
8645f64
commit d2087e9
Showing
6 changed files
with
15 additions
and
114 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,4 @@ | ||
from beproud.django.notify.tests.test_basic import * #NOQA | ||
from beproud.django.notify.tests.test_mail import * #NOQA | ||
from beproud.django.notify.tests.test_storage import * #NOQA | ||
from beproud.django.notify.tests.test_tasks import * #NOQA |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -14,14 +14,14 @@ def read_file(filename): | |
|
||
setup( | ||
name='bpnotify', | ||
version='0.48', | ||
version='0.49', | ||
description='Notification routing for Django', | ||
author='BeProud', | ||
author_email='[email protected]', | ||
long_description=read_file('README.rst'), | ||
long_description_content_type="text/x-rst", | ||
url='https://github.com/beproud/bpnotify/', | ||
python_requires='>=3.6', | ||
python_requires='>=3.9', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Plugins', | ||
|
@@ -30,21 +30,22 @@ def read_file(filename): | |
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Framework :: Django', | ||
'Framework :: Django :: 2.2', | ||
'Framework :: Django :: 3.2', | ||
'Framework :: Django :: 4.2', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
include_package_data=True, | ||
packages=find_packages(), | ||
namespace_packages=['beproud', 'beproud.django'], | ||
test_suite='tests.main', | ||
install_requires=[ | ||
'Django>=2.2', | ||
'django-jsonfield>=1.0.1', | ||
'Celery>=4.2', | ||
'Django>=3.2', | ||
'Celery>=5.2', | ||
'six', | ||
], | ||
zip_safe=False, | ||
|
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