summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJerome Martin <jxm@risingtidesystems.com>2011-09-22 00:48:23 +0200
committerJerome Martin <jxm@risingtidesystems.com>2011-09-22 01:40:22 +0200
commit95cdcb7dd669d840d14bd099d68fce4dcdc9cc64 (patch)
tree065d06af0d3ccce58abaed8adcbf88f1dfae4a29 /setup.py
parent7158711b2d4217d600a8b750e6e6974931b5a910 (diff)
downloadtargetcli-95cdcb7dd669d840d14bd099d68fce4dcdc9cc64.tar.gz
Now using a tarball-release based Makefile.2.0rc1
* Removed useless obsolete targets (setup.py based) * Merged version templating in Makefile (removed bin/gen_changelog*). * Added 'release' make target that generates a dist/*.tar.gz official versionned release tarball from which one can just use setup.py, dpkg-buildpackage or rpmbuild (no Makefile in it). * Removed obsolete bin/lint as well. * Now the 'rpm' and 'deb' Makefile targets use the generated release build. * Makefile commands now use no echo mode. * Added timestamps for virtual targets. * Removed obsolete (empty) doc packages generation. The shell is self-documenting. * Cleaned up setup.py alignements.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py23
1 files changed, 10 insertions, 13 deletions
diff --git a/setup.py b/setup.py
index 5e2010e..7d3bc07 100755
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,4 @@
#! /usr/bin/env python
-
'''
This file is part of targetcli.
Copyright (c) 2011 by RisingTide Systems LLC
@@ -29,15 +28,13 @@ LICENSE = PKG.__license__
SCRIPTS = ["scripts/targetcli"]
DESCRIPTION = PKG.__description__
-setup(
- name=PKG.__name__,
- description=DESCRIPTION,
- version=VERSION,
- author=AUTHOR,
- author_email=EMAIL,
- license=LICENSE,
- url=URL,
- scripts=SCRIPTS,
- packages=[PKG.__name__],
- package_data = {'':[]}
- )
+setup(name=PKG.__name__,
+ description=DESCRIPTION,
+ version=VERSION,
+ author=AUTHOR,
+ author_email=EMAIL,
+ license=LICENSE,
+ url=URL,
+ scripts=SCRIPTS,
+ packages=[PKG.__name__],
+ package_data = {'':[]})