-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 970 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
# Read the long description from README.md
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="SyntaxHighlighterS",
version="0.0.3",
description="A Simple Starter Syntax Highlighter.",
author="TuberAsk",
packages=find_packages(where="src"), # Specify the 'src' directory as the package root
package_dir={"": "src"}, # Specify the package directory mapping
long_description=long_description, # Use the README content as long description
long_description_content_type="text/markdown", # Specify the README file type
project_urls = {
"Homepage": "https://github.com/TuberAsk/SyntaxHighlighterS",
"Documentation": "https://github.com/TuberAsk/SyntaxHighlighterS/wiki",
"Funding": "https://ko-fi.com/TuberAsk",
"Bug Tracker": "https://github.com/TuberAsk/SyntaxHighlighterS/issues",
},
)