Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspd committed May 18, 2024
1 parent 63a0506 commit a09da44
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions appointment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
__author__ = "Adams Pierre David"
__author_email__ = "adamspd.developer@gmail.com"
__author_email__ = "django-appt@adamspierredavid.com"
__author_website__ = "https://adamspierredavid.com/"
__description__ = "Managing appointment scheduling with customizable slots, staff features, and conflict handling."
__package_name__ = "django-appointment"
__url__ = "https://github.com/adamspd/django-appointment"
__package_website__ = "https://django-appt.adamspierredavid.com/"
__version__ = "3.4.1"
__package_doc_url__ = "https://django-appt-doc.adamspierredavid.com/overview.html"
__version__ = "3.5.0"
__test_version__ = False
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
license = Apache License 2.0
classifiers =
Development Status :: 3 - Alpha
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Framework :: Django
Expand All @@ -27,4 +27,4 @@ install_requires =
phonenumbers>=8.13.22
django-phonenumber-field>=7.2.0
babel>=2.13.0
django-q2>=1.6.1
django-q2>=1.6.1
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import setuptools

from appointment import (__author__, __author_email__, __author_website__, __description__, __package_name__, __url__,
__version__, __package_website__)
__version__, __package_website__, __package_doc_url__)

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
Expand All @@ -17,6 +17,7 @@
description=__description__,
project_urls={
"Author's Website": __author_website__,
"Package's Website": __package_website__,
"Package's demo Website": __package_website__,
"Documentation": __package_doc_url__,
},
)

0 comments on commit a09da44

Please sign in to comment.