File: setup.py

package info (click to toggle)
doxyqml 0.3.0-1.2
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 216 kB
  • sloc: python: 780; cpp: 54; makefile: 6
file content (27 lines) | stat: -rwxr-xr-x 737 bytes parent folder | download
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
#!/usr/bin/env python3
# encoding: utf-8

from setuptools import setup

from doxyqml import doxyqml

setup(name="doxyqml",
    version=doxyqml.VERSION,
    description=doxyqml.DESCRIPTION,
    author="Aurélien Gâteau",
    author_email="mail@agateau.com",
    license="BSD",
    platforms=["any"],
    url="http://agateau.com/projects/doxyqml",
    packages=["doxyqml"],
    scripts=["bin/doxyqml"],
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Environment :: Plugins",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
        "Topic :: Documentation",
    ]
)