diff options
author | chai <chaifix@163.com> | 2021-10-26 12:20:33 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-26 12:20:33 +0800 |
commit | 3b79158563fd2f7f72d502067f178d60c31b2c28 (patch) | |
tree | 1b583739439a00c4d347a6533a8424b153fbcbd1 /Tools/XlsToCsv/setup.py | |
parent | 0549b1e5a8a3132005e275d6026db8003cb067d2 (diff) |
+xlsxToCSV
Diffstat (limited to 'Tools/XlsToCsv/setup.py')
-rw-r--r-- | Tools/XlsToCsv/setup.py | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/Tools/XlsToCsv/setup.py b/Tools/XlsToCsv/setup.py deleted file mode 100644 index fe5ddb7..0000000 --- a/Tools/XlsToCsv/setup.py +++ /dev/null @@ -1,55 +0,0 @@ - -import os -import shutil -from distutils.core import setup - -if not os.path.exists('scripts'): - os.makedirs('scripts') -shutil.copyfile('xlsx2csv.py', 'scripts/xlsx2csv') - -scripts = ["scripts/xlsx2csv"] - -name = "xlsx2csv" -version = "0.7.8" -author = "Dilshod Temirkhdojaev" -author_email = "tdilshod@gmail.com" -desc = "xlsx to csv converter" -long_desc = "xlsx to csv converter" -url = "http://github.com/dilshod/xlsx2csv" -classifiers=[ - "Development Status :: 5 - Production/Stable", - "Environment :: Console", - "Intended Audience :: End Users/Desktop", - "Intended Audience :: Developers", - "License :: OSI Approved :: GNU General Public License (GPL)", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.4", - "Programming Language :: Python :: 2.5", - "Programming Language :: Python :: 2.6", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.0", - "Programming Language :: Python :: 3.1", - "Programming Language :: Python :: 3.2", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", - "Topic :: Office/Business", - "Topic :: Utilities" -] -data_files=[ -] - -setup( - name='xlsx2csv', - version='0.7.8', - description=desc, - author=author, - author_email=author_email, - classifiers=classifiers, - py_modules=['xlsx2csv'], - data_files=data_files, - url=url, - scripts=scripts -) |