Skip to content

Commit

Permalink
updated the version
Browse files Browse the repository at this point in the history
  • Loading branch information
kishorek committed Jun 22, 2020
1 parent 1eb6e33 commit 05c6f73
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 46 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# comparesc
# comparesv
### CSV Comparison on steriods

## Usage
Expand Down
83 changes: 39 additions & 44 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,54 +1,49 @@
try:
from setuptools import setup
from setuptools import setup
except ImportError:
from distutils.core import setup
from distutils.core import setup

from version import __version__
import os


def open_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname))
return open(os.path.join(os.path.dirname(__file__), fname))


setup(
name='comparesv',
packages=[],
version=__version__,
license='MIT',
description='CSV Comparison on steroids',
long_description=open_file('README.md').read(),
author='Kishore Kumar',
author_email='[email protected]',
url='https://github.com/kishorek',
download_url='https://github.com/user/reponame/archive/v_01.tar.gz',
keywords=['CSV', 'Comparison', 'Compare'],
install_requires=[
'chardet==3.0.4',
'tqdm==4.18.0',
'unidecode==1.1.1',
'doublemetaphone==0.1',
'fuzzywuzzy==0.18.0'
],
setup_requires=[
'chardet==3.0.4',
'tqdm==4.18.0',
'unidecode==1.1.1',
'doublemetaphone==0.1',
'fuzzywuzzy==0.18.0'
],
entry_points={
'console_scripts': [
'comparesv = cli:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Utilities'
]
name='comparesv',
packages=[''],
version=__version__,
license='MIT',
description='CSV Comparison on steroids',
long_description=open_file('README.md').read(),
long_description_content_type="text/markdown",
author='Kishore Kumar',
author_email='[email protected]',
url='https://github.com/kishorek',
keywords=['CSV', 'Comparison', 'Compare'],
install_requires=[
'chardet==3.0.4',
'tqdm==4.18.0',
'unidecode==1.1.1',
'doublemetaphone==0.1',
'fuzzywuzzy==0.18.0'
],
entry_points={
'console_scripts': [
'comparesv = cli:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Utilities'
]
)
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = 0.01
__version__ = 0.11

0 comments on commit 05c6f73

Please sign in to comment.