File tree 3 files changed +11
-15
lines changed 3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import django
4
4
5
- VERSION = (3 , 3 , 0 )
6
- __version__ = '.' .join ([str (i ) for i in VERSION ])
7
- __author__ = 'Michael Shepanski'
8
-
9
- __url__ = 'https://github.com/django-dbbackup/django-dbbackup'
10
-
11
5
if django .VERSION < (3 , 2 ):
12
6
default_app_config = 'dbbackup.apps.DbbackupConfig'
Original file line number Diff line number Diff line change 1
1
Changelog
2
- =====
2
+ =========
3
3
4
- Unreleased
5
- -----------
4
+ 4.0.0b0 (2021-12-19)
5
+ --------------------
6
6
7
7
* Fix RemovedInDjango41Warning related to default_app_config `#413 `_
8
8
* Add authentication database support for MongoDB `#379 `_
@@ -14,6 +14,8 @@ Unreleased
14
14
* Fix authentication error when postgres is password protected `#361 `_
15
15
* Use exclude-table-data instead of exclude-table `#363 `_
16
16
* Add support for exclude tables data in the command interface `#375 `_
17
+ * Move author and version information into setup.py to allow building package in isolated
18
+ environment (e.g. with the ``build `` package). `#414 `_
17
19
* Documentation fixes `#341 `_ `#333 `_ `#349 `_ `#348 `_ `#337 `_ `#411 `_
18
20
19
21
@@ -61,3 +63,4 @@ Unreleased
61
63
.. _`#379` : https://github.com/django-dbbackup/django-dbbackup/pull/379
62
64
.. _`#411` : https://github.com/django-dbbackup/django-dbbackup/pull/411
63
65
.. _`#413` : https://github.com/django-dbbackup/django-dbbackup/pull/413
66
+ .. _`#414` : https://github.com/django-dbbackup/django-dbbackup/pull/414
Original file line number Diff line number Diff line change 3
3
from pathlib import Path
4
4
5
5
from setuptools import setup , find_packages
6
- import dbbackup
7
6
8
7
9
8
def get_requirements ():
@@ -24,16 +23,16 @@ def get_test_requirements():
24
23
25
24
setup (
26
25
name = 'django-dbbackup' ,
27
- version = dbbackup . __version__ ,
28
- description = dbbackup . __doc__ ,
29
- author = dbbackup . __author__ ,
30
- author_email = dbbackup . __email__ ,
26
+ version = "4.0.0b0" ,
27
+ description = 'Management commands to help backup and restore a project database and media' ,
28
+ author = 'Michael Shepanski' ,
29
+
31
30
long_description = project_dir .joinpath ("README.rst" ).read_text (encoding = "utf-8" ),
32
31
python_requires = ">=3.6" ,
33
32
install_requires = get_requirements (),
34
33
tests_require = get_test_requirements (),
35
34
license = 'BSD' ,
36
- url = dbbackup . __url__ ,
35
+ url = 'https://github.com/django-dbbackup/django-dbbackup' ,
37
36
keywords = keywords ,
38
37
packages = find_packages (),
39
38
classifiers = [
You can’t perform that action at this time.
0 commit comments