Skip to content

Commit

Permalink
pre-release version v0.0.1a6-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
ronylpatil committed Jun 17, 2024
1 parent fc88f54 commit cbf967e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
5 changes: 1 addition & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ A simple code example:
- .. image:: doc/en/wordcloud.png
:width: 330px
:height: 190px
- .. image::
:width:
:height:
-

Features
--------
Expand All @@ -68,7 +66,6 @@ Features

Documentation
-------------
.. For full documentation, including installation, tutorials and PDF documents, please see medium blog.
Updated soon.

Bugs/Requests
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ tox==4.15.1
flake8==7.0.0
black==24.4.2
mypy==1.10.0
docutils==0.21.2

-r requirements.txt

Expand Down
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
__version__ = "0.0.1a5"

__version__ = "0.0.1a6"
REPO_NAME = "chatInsights"
AUTHOR = "ronilpatil"
AUTHOR_EMAIL = "[email protected]"
AUTHOR_USER_NAME = "ronylpatil"


setup(
name=REPO_NAME,
version=__version__,
Expand All @@ -18,7 +18,7 @@
description=("whatsapp group chat analysis python package"),
keywords=["chat analysis", "statistical analysis", "eda"],
long_description=long_description,
long_description_content="text/markdown",
long_description_content_type="text/markdown",
url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
classifiers=[
"Development Status :: 3 - Alpha",
Expand All @@ -36,16 +36,16 @@
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization"
"Topic :: Scientific/Engineering :: Visualization",
],
python_requires=">=3.9",
project_urls={
"Source": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}" ,
"Source": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
"Changelog": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/releases",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
packages=find_packages(where="src"),
)

# ref. for classifiers: https://pypi.org/classifiers/
# ref. for classifiers: https://pypi.org/classifiers/

0 comments on commit cbf967e

Please sign in to comment.