forked from kad/python-minideblib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 1.04 KB
/
setup.py
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
#!/usr/bin/python -tt
# -*- coding: UTF-8 -*-
# vim: sw=4 ts=4 expandtab ai
#
# $Id$
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = "0.6.21.34"
setup (name = "minideblib",
description = "Access to deb files and repositories",
version = version,
author = "Alexandr D. Kanevskiy",
author_email = "[email protected]",
url = "http://bifh.org/wiki/python-minideblib",
license = "GPL",
packages = ['minideblib'],
long_description = "Python library for manipulating debian packages and repositories",
keywords = "python debian apt dpkg",
platforms="Python 2.3 and later.",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: Unix",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: System :: Archiving :: Packaging",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)