File: setup.py

package info (click to toggle)
pyrrd 0.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,016 kB
  • ctags: 416
  • sloc: python: 2,358; makefile: 3
file content (38 lines) | stat: -rw-r--r-- 1,100 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
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup

from pyrrd import meta
from pyrrd.util import dist


setup(
    name=meta.display_name,
    version=meta.version,
    description=meta.description,
    author=meta.author,
    author_email=meta.author_email,
    url=meta.url,
    license=meta.license,
    packages=dist.findPackages(),
    long_description=dist.catReST(
        "docs/PRELUDE.txt",
        "README",
        "TODO",
        "docs/HISTORY.txt",
        "docs/ACKNOWLEDGEMENTS.txt",
        "docs/FOOTNOTES.txt",
        stop_on_errors=True,
        out=False),
    classifiers=[
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "Intended Audience :: Information Technology",
        "Intended Audience :: System Administrators",
        "Programming Language :: Python",
        "Topic :: Database",
        "Topic :: Database :: Front-Ends",
        "Topic :: Multimedia :: Graphics",
        "Topic :: System :: Networking :: Monitoring",
        "Topic :: System :: Systems Administration",
        "License :: OSI Approved :: BSD License",
       ],
    )