Skip to content

Commit d62c627

Browse files
committed
Added test website to package's url
1 parent 7b82ab4 commit d62c627

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

appointment/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
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"
7+
__package_website__ = "https://django-appt.adamspierredavid.com/"
78
__version__ = "3.0.1"
89
__test_version__ = False

setup.py

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

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

66
with open("README.md", "r", encoding="utf-8") as fh:
77
long_description = fh.read()
@@ -16,6 +16,7 @@
1616
url=__url__,
1717
description=__description__,
1818
project_urls={
19-
"Author Website": __author_website__,
19+
"Author's Website": __author_website__,
20+
"Package's Website": __package_website__,
2021
},
2122
)

0 commit comments

Comments
 (0)