Skip to content

Commit b93b1d9

Browse files
committed
makin a new release
1 parent 6c01fe4 commit b93b1d9

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,23 @@
55
here = os.path.abspath(os.path.dirname(__file__))
66

77
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
8-
DESCRIPTION = "\n" + fh.read()
8+
long_description = "\n" + fh.read()
99

10-
VERSION = '0.0.2'
10+
VERSION = '0.0.3'
1111
DESCRIPTION = 'PyTextBin is a versatile Python library facilitating seamless conversion between text, binary, JSON, base64, xml and CSV formats with ease.'
1212

1313
# Setting up
1414
setup(
1515
name="PyTextBin",
1616
version=VERSION,
1717
author="Collins O. Odhiambo",
18-
author_email="<[email protected]>",
18+
author_email="<[email protected]>",
1919
description=DESCRIPTION,
20+
long_description=long_description,
21+
long_description_content_type="text/markdown",
2022
packages=find_packages(),
21-
install_requires=['opencv-python', 'pyautogui', 'pyaudio'],
22-
keywords=['python', 'csv', 'xmml', 'base64', 'text', 'json', 'binary'],
23+
install_requires=[''],
24+
keywords=['PyTextBin', 'csv', 'xmml', 'base64', 'text', 'json', 'binary'],
2325
classifiers=[
2426
"Development Status :: 1 - Planning",
2527
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)