File indexing completed on 2025-03-23 08:19:53
0001 #!/usr/bin/env python3 0002 import os 0003 0004 from setuptools import setup 0005 0006 from doxyqml import __version__, DESCRIPTION 0007 0008 0009 def read_readme(): 0010 root_dir = os.path.abspath(os.path.dirname(__file__)) 0011 with open(os.path.join(root_dir, 'README.md'), encoding='utf-8') as f: 0012 return f.read() 0013 0014 0015 setup(name="doxyqml", 0016 version=__version__, 0017 description=DESCRIPTION, 0018 long_description=read_readme(), 0019 long_description_content_type="text/markdown", 0020 author="Aurélien Gâteau, Carl Schwan", 0021 author_email="mail@agateau.com, carl@carlschwan.eu", 0022 license="BSD", 0023 platforms=["any"], 0024 url="https://invent.kde.org/sdk/doxyqml", 0025 packages=["doxyqml"], 0026 entry_points={ 0027 "console_scripts": [ 0028 "doxyqml = doxyqml.main:main", 0029 ], 0030 }, 0031 classifiers=[ 0032 "Development Status :: 5 - Production/Stable", 0033 "Environment :: Plugins", 0034 "Intended Audience :: Developers", 0035 "License :: OSI Approved :: BSD License", 0036 "Operating System :: OS Independent", 0037 "Programming Language :: Python :: 3", 0038 "Topic :: Documentation", 0039 ])