Skip to content

Commit

Permalink
Updated PYPI project description.
Browse files Browse the repository at this point in the history
  • Loading branch information
Infinitode committed Sep 26, 2024
1 parent e4d5902 commit 1aca53a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DupliPy 0.2.2
# DupliPy 0.2.3
![Python Version](https://img.shields.io/badge/python-3.12-blue.svg)
![Code Size](https://img.shields.io/github/languages/code-size/infinitode/duplipy)
![Downloads](https://pepy.tech/badge/duplipy)
Expand All @@ -7,7 +7,7 @@

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.

## Changes to DupliPy 0.2.2
## Changes to DupliPy 0.2.3

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.

Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from setuptools import setup, find_packages

with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='duplipy',
version='{{VERSION_PLACEHOLDER}}',
author='Infinitode Pty Ltd',
author_email='infinitode.ltd@gmail.com',
description='A package for formatting and text replication, with added support for image augmentation.',
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.',
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.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/infinitode/duplipy',
packages=find_packages(),
Expand Down
3 changes: 0 additions & 3 deletions test.py

This file was deleted.

1 change: 0 additions & 1 deletion test_duplipy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from duplipy import *


text = "The quick brown fox jumps over the lazy dog.545 g w 4 "
print("Removed stopwords: ", remove_stopwords(text))
print("Removed numbers: ", remove_numbers(text))
Expand Down

0 comments on commit 1aca53a

Please sign in to comment.