Skip to content

Commit c873acd

Browse files
authored
v0.3.0 (#16)
1 parent e869b69 commit c873acd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = "0.2.3"
3+
VERSION = "0.3.0"
44
DESCRIPTION = "A better markdown library"
55

6+
def read(path):
7+
with open(path, "r") as f:
8+
return f.read()
9+
610
setup(
711
name="Better-MD",
812
version=VERSION,
913
author="R5dan",
1014
description=DESCRIPTION,
11-
long_description=open("README.md").read(),
15+
long_description=read("README.md"),
1216
long_description_content_type="text/markdown",
1317
packages=find_packages(exclude="tests"),
1418
install_requires=[],

0 commit comments

Comments
 (0)