-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·42 lines (40 loc) · 1.32 KB
/
setup.py
File metadata and controls
executable file
·42 lines (40 loc) · 1.32 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='pyhocon',
version='0.3.63',
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',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
packages=[
'pyhocon',
],
install_requires=[
'pyparsing>=3.0.0',
],
extras_require={
'Duration': ['python-dateutil>=2.8.0']
},
entry_points={
'console_scripts': [
'pyhocon=pyhocon.tool:main'
]
}
)