-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 751 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
from appointment import (__author__, __author_email__, __author_website__, __description__, __package_name__, __url__,
__version__, __package_website__, __package_doc_url__)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name=__package_name__,
version=__version__,
author=__author__,
author_email=__author_email__,
long_description=long_description,
long_description_content_type="text/markdown",
url=__url__,
description=__description__,
project_urls={
"Author's Website": __author_website__,
"Package's demo Website": __package_website__,
"Documentation": __package_doc_url__,
},
)