-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·34 lines (29 loc) · 1.06 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
#!/usr/bin/python -tt
# -*- coding: UTF-8 -*-
# vim: sw=4 ts=4 expandtab ai
#
# $Id: setup.py 82 2007-11-11 23:01:26Z kad $
import glob
from distutils.core import setup
setup (name = "sbdmock",
description = "Scratchbox debian package builder",
version = open("debian/changelog").readline().split(' ')[1][1:-1],
author = "Alexandr D. Kanevskiy",
author_email = "packages@bifh.org",
url = "http://bifh.org/wiki/sbdmock",
license = "GPL",
scripts = ['scripts/sbdmock', 'scripts/sbdarchtarget' ],
long_description = "Scratchbox debian package builder",
keywords = "python debian dpkg scratchbox",
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",
]
)
# Not installing example configs
#data_files=[('/etc/sbdmock', glob.glob("etc/*.cfg")), ],