-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
41 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# comparesc | ||
# comparesv | ||
### CSV Comparison on steriods | ||
|
||
## Usage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = 0.01 | ||
__version__ = 0.11 |