-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 942 Bytes
/
setup.py
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
from setuptools import setup
setup(
name="csv_2_json",
version="1.0.1",
description="A tool for csv to json file conversion",
author="zWaR",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6"
],
keywords="csv json conversion tool",
packages=["csv2json"],
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-cov", "pyfakefs", "pytest-mypy"],
url="https://github.com/zWaR/csv2json",
project_urls={
"Source Code": "https://github.com/zWaR/csv2json.git",
"Bug Tracker": "https://github.com/zWaR/csv2json/issues",
"Documentation": "https://github.com/zWaR/csv2json"
},
entry_points={
"console_scripts": [
"csv2json = csv2json.main:main"
]
}
)