Skip to content

Commit 1aca53a

Browse files
committed
Updated PYPI project description.
1 parent e4d5902 commit 1aca53a

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DupliPy 0.2.2
1+
# DupliPy 0.2.3
22
![Python Version](https://img.shields.io/badge/python-3.12-blue.svg)
33
![Code Size](https://img.shields.io/github/languages/code-size/infinitode/duplipy)
44
![Downloads](https://pepy.tech/badge/duplipy)
@@ -7,7 +7,7 @@
77

88
An open source Python library for text formatting, augmentation, and similarity calculation tasks in NLP, the package now also includes additional methods for image augmentation.
99

10-
## Changes to DupliPy 0.2.2
10+
## Changes to DupliPy 0.2.3
1111

1212
Duplipy now utilizes another one of our Python packages, called ValX, which provides quick methods we can use to clean and format our text data before training in preprocessing steps.
1313

setup.py

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

3+
with open("readme.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='duplipy',
58
version='{{VERSION_PLACEHOLDER}}',
69
author='Infinitode Pty Ltd',
710
author_email='infinitode.ltd@gmail.com',
8-
description='A package for formatting and text replication, with added support for image augmentation.',
9-
long_description='DupliPy is a quick and easy-to-use package that can handle text formatting and data augmentation tasks for NLP in Python, with added support for image augmentation.',
11+
description='DupliPy is a quick and easy-to-use package that can handle text formatting and data augmentation tasks for NLP in Python, with added support for image augmentation.',
12+
long_description=long_description,
1013
long_description_content_type='text/markdown',
1114
url='https://github.com/infinitode/duplipy',
1215
packages=find_packages(),

test.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

test_duplipy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from duplipy import *
22

3-
43
text = "The quick brown fox jumps over the lazy dog.545 g w 4 "
54
print("Removed stopwords: ", remove_stopwords(text))
65
print("Removed numbers: ", remove_numbers(text))

0 commit comments

Comments
 (0)