forked from chimpler/pyhocon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (28 loc) · 869 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='pyhocon',
version='0.1.9',
description='HOCON parser for Python',
long_description='pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON content into json, yaml and properties format.',
keywords='hocon parser',
license='Apache License 2.0',
author="Francois Dang Ngoc",
author_email='francois.dangngoc@gmail.com',
url='http://github.com/chimpler/pyhocon/',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=[
'pyhocon',
],
install_requires=[
'pyparsing==2.0.3'
],
entry_points={
'console_scripts': [
'pyhocon=pyhocon.tool:main'
]
}
)