CrossDown/setup.py

31 lines
774 B
Python
Raw Normal View History

2024-09-16 23:06:18 +08:00
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="CrossDown",
2024-09-29 19:30:57 +08:00
version="0.11.2",
2024-09-16 23:06:18 +08:00
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",
2024-09-22 19:44:35 +08:00
py_modules=[
'CrossDown',
'CrossMore',
],
2024-09-16 23:06:18 +08:00
install_requires=[
'markdown',
2024-09-29 19:30:57 +08:00
'matplotlib',
'numpy',
2024-09-16 23:06:18 +08:00
],
classifiers=[
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent"
],
)