-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 1.02 KB
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
26
27
from setuptools import setup, find_packages
setup(
name="hypermark-py", # Name of your package on PyPI
version="1.0.2", # Version of your package
author="SwapCodesDev", # Replace with your name
author_email="swapcodes.dev@gmail.com", # Replace with your email
description="A Python package for converting Markdown to HTML",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/SwapCodesDev/hypermark",
packages=find_packages(),
entry_points={
"console_scripts": [
"hypermark=hypermark.cli:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Match the LICENSE file
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=['beautifulsoup4', 'emoji'], # Add dependencies here if needed
package_data={'hypermark': ['README.md', 'LICENSE', 'hypermark.css']},
license="MIT",
)