Skip to content

Commit

Permalink
fix: version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunderline committed Feb 20, 2021
1 parent a318e03 commit 62ae722
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 167 deletions.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 ali madihi bidgoli

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Py Persian Tools
# Persian Tools

An anthology of a variety of tools for the Persian language in Python

Expand All @@ -7,7 +7,7 @@ An anthology of a variety of tools for the Persian language in Python

## Installation

_soon on pypi_
`pip install persian-tools`

## Modules

Expand Down
157 changes: 0 additions & 157 deletions README.rst

This file was deleted.

2 changes: 1 addition & 1 deletion persian_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = 'Ali Madihi (mrunderline)'
__version__ = '0.0.1'
__version__ = '0.0.2'
__date__ = '2021-02-20'


Expand Down
24 changes: 23 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
[metadata]
description-file = README.md
name = persian_tools
version = 0.0.2
author = Ali Madihi (mrunderline)
author_email = [email protected]
description = An anthology of a variety of tools for the Persian language in Python
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/persian-tools/py-persian-tools
classifiers =
Development Status :: 4 - Beta
Environment :: Plugins
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Utilities

[options]
python_requires = >=3.6
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
from distutils.core import setup
import setuptools
from importlib import import_module


def get_long_description():
readme = open("README.rst").read()
return "\n\n".join(readme)
with open("README.md", "r") as fh:
long_description = fh.read()


setup(
setuptools.setup(
name='persian_tools',
packages=['persian_tools'],
version=import_module('persian_tools').__version__,
license='MIT',
description='An anthology of a variety of tools for the Persian language in Python',
long_description=get_long_description(),
long_description=long_description,
long_description_content_type="text/markdown",
author='Ali Madihi (mrunderline)',
author_email='[email protected]',
url='https://github.com/persian-tools/py-persian-tools',
Expand Down

0 comments on commit 62ae722

Please sign in to comment.