We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e869b69 commit c873acdCopy full SHA for c873acd
setup.py
@@ -1,14 +1,18 @@
1
from setuptools import setup, find_packages
2
3
-VERSION = "0.2.3"
+VERSION = "0.3.0"
4
DESCRIPTION = "A better markdown library"
5
6
+def read(path):
7
+ with open(path, "r") as f:
8
+ return f.read()
9
+
10
setup(
11
name="Better-MD",
12
version=VERSION,
13
author="R5dan",
14
description=DESCRIPTION,
- long_description=open("README.md").read(),
15
+ long_description=read("README.md"),
16
long_description_content_type="text/markdown",
17
packages=find_packages(exclude="tests"),
18
install_requires=[],
0 commit comments