File: setup.py

package info (click to toggle)
python-schroot 0.4-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 108 kB
  • sloc: python: 190; makefile: 3
file content (21 lines) | stat: -rwxr-xr-x 431 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from schroot import __appname__, __version__
from setuptools import setup


long_description = ""

setup(
    name=__appname__,
    version=__version__,
    scripts=[],
    packages=[
        'schroot',
    ],
    author="Paul Tagliamonte",
    author_email="tag@pault.ag",
    long_description=long_description,
    description='schroot chroot schroots!',
    license="Expat",
    url="http://pault.ag/",
    platforms=['any'],
)