-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
setup(
name="markdownrenderer", # The name of your package
version="1.0", # The version of your package
packages=find_packages(), # Automatically find packages in the directory
install_requires=[
'pywebview',
'markdown',
'flask',
],
description="A simple markdown renderer in python", # Short description
long_description=open('README.md').read(), # Read long description from README
long_description_content_type='text/markdown', # Markdown format for the long description
author="BOTTOMFRAGGER523", # Your name
url="https://github.com/BOTTOMFRAGGER523/Markdown-RendererPy", # URL of the project (GitHub, etc.)
classifiers=[ # PyPI classifiers for categorizing the package
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', # GPLv2 license
'Operating System :: OS Independent', # Cross-platform support
],
python_requires='>=3.10', # Define the minimum Python version requirement
license='GPLv2', # Specify the GPLv2 license
keywords='markdownrenderer, markdown renderer', # Keywords for easier search on PyPI
)