-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 999 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 999 Bytes
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
29
30
31
32
from setuptools import setup, find_packages
VERSION = "0.3.4"
DESCRIPTION = "A better markdown library"
def read(path):
with open(path, "r") as f:
return f.read()
setup(
name="Better-MD",
version=VERSION,
author="R5dan",
description=DESCRIPTION,
long_description=read("README.md"),
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/Better-MD/better-md"
)