diff --git a/appointment/__init__.py b/appointment/__init__.py index 8d6ad8a..c7615a7 100644 --- a/appointment/__init__.py +++ b/appointment/__init__.py @@ -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 diff --git a/setup.cfg b/setup.cfg index 8cdd279..15bceae 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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 \ No newline at end of file + django-q2>=1.6.1 diff --git a/setup.py b/setup.py index 81be4d3..a7534ff 100644 --- a/setup.py +++ b/setup.py @@ -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() @@ -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__, }, )