-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.25 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
dependencies = ["chardet"]
long_description = """
csvtool is a simple command-line tool to 1) extract statistics, 2) perform regular expression search and, 3) generate output file
without writing code for such simple tasks for .CSV files.
"""
setup(
name='csvtool',
version="0.3",
url='https://github.com/maroofi/csvtool/',
author='Sourena Maroofi',
install_requires=dependencies,
setup_requires=dependencies,
author_email='maroofi@gmail.com',
description='csvtool is an easy to use command-line tool to work with .CSV files.',
long_description=long_description,
packages=['csvtool',],
include_package_data=True,
entry_points={
'console_scripts': [
'csvtool = csvtool.csvtool:main',
],
},
license = "MIT",
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing",
"Topic :: Education",
"Environment :: Console",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
],
)