0.8.0 pypi init

This commit is contained in:
跨越晨昏 2024-09-16 23:06:18 +08:00
parent bc669066c5
commit b570b61bd9
2 changed files with 27 additions and 0 deletions

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[metadata]
description-file = README.md

25
setup.py Normal file
View File

@ -0,0 +1,25 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="CrossDown",
version="0.8.0",
author="CrossDark",
author_email="liuhanbo333@icloud.com",
description="CrossDark's MarkDown",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CrossDark/CrossDown",
packages=setuptools.find_packages(),
install_requires=[
'markdown',
],
classifiers=[
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent"
],
)