Skip to content

Commit a09da44

Browse files
committed
Release new version
1 parent 63a0506 commit a09da44

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

appointment/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
__author__ = "Adams Pierre David"
2-
__author_email__ = "adamspd.developer@gmail.com"
2+
__author_email__ = "django-appt@adamspierredavid.com"
33
__author_website__ = "https://adamspierredavid.com/"
44
__description__ = "Managing appointment scheduling with customizable slots, staff features, and conflict handling."
55
__package_name__ = "django-appointment"
66
__url__ = "https://github.com/adamspd/django-appointment"
77
__package_website__ = "https://django-appt.adamspierredavid.com/"
8-
__version__ = "3.4.1"
8+
__package_doc_url__ = "https://django-appt-doc.adamspierredavid.com/overview.html"
9+
__version__ = "3.5.0"
910
__test_version__ = False

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
license = Apache License 2.0
33
classifiers =
4-
Development Status :: 3 - Alpha
4+
Development Status :: 5 - Production/Stable
55
Intended Audience :: Developers
66
License :: OSI Approved :: Apache Software License
77
Framework :: Django
@@ -27,4 +27,4 @@ install_requires =
2727
phonenumbers>=8.13.22
2828
django-phonenumber-field>=7.2.0
2929
babel>=2.13.0
30-
django-q2>=1.6.1
30+
django-q2>=1.6.1

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import setuptools
22

33
from appointment import (__author__, __author_email__, __author_website__, __description__, __package_name__, __url__,
4-
__version__, __package_website__)
4+
__version__, __package_website__, __package_doc_url__)
55

66
with open("README.md", "r", encoding="utf-8") as fh:
77
long_description = fh.read()
@@ -17,6 +17,7 @@
1717
description=__description__,
1818
project_urls={
1919
"Author's Website": __author_website__,
20-
"Package's Website": __package_website__,
20+
"Package's demo Website": __package_website__,
21+
"Documentation": __package_doc_url__,
2122
},
2223
)

0 commit comments

Comments
 (0)