forked from chamkank/hone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 845 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 845 Bytes
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
import os
from setuptools import setup, find_packages
long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
setup(
name='hone',
version='0.1.4',
author='Chamantha Kankanamge',
author_email='chamkdev@gmail.com',
license='MIT',
description='Convert CSV to automatically nested JSON.',
long_description=long_description,
keywords="convert csv auto nested json",
url='https://github.com/chamkank/hone',
project_urls={
"Source Code": 'https://github.com/chamkank/hone'
},
packages=find_packages(),
install_requires=[],
entry_points={'console_scripts': ['hone=hone.__main__:main']},
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
)