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 44 45 46
|
#!/usr/bin/env python
import sys
import os
from setuptools import setup
basepath = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, os.path.dirname(basepath))
HIYAPYCOVERSION='0.7.0'
long_description = open('README.rst').read()
installrequires = [
'PyYAML<7',
'Jinja2>3,<4',
'MarkupSafe<4'
]
setup(name='HiYaPyCo',
version=HIYAPYCOVERSION,
description='Hierarchical Yaml Python Config',
long_description="%s" % long_description,
long_description_content_type='text/x-rst',
author='Klaus Zerwes zero-sys.net',
author_email='zerwes@users.noreply.github.com',
url='https://github.com/zerwes/hiyapyco',
license='GPLv3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.11',
],
packages=['hiyapyco'],
keywords='configuration parser yaml',
install_requires = installrequires,
platforms = 'any',
)
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 smartindent nu
|