-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 941 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
23
24
25
26
27
28
from setuptools import setup, find_packages
VERSION = "0.2.3"
DESCRIPTION = "A better markdown library"
setup(
name="Better-MD",
version=VERSION,
author="R5dan",
description=DESCRIPTION,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude="tests"),
install_requires=[],
extras_require={
"tables": ["pandas==2.2.3"]
},
keywords=['python', 'better markdown', 'markdown'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
url="https://github.com/Betters-Markdown/better_md"
)