This repository was archived by the owner on Feb 25, 2018. It is now read-only.
File tree 2 files changed +16
-9
lines changed
2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 1
1
#
2
- # This is the dexml setuptools script.
2
+ # This is the withhacks setuptools script.
3
3
# Originally developed by Ryan Kelly, 2009.
4
4
#
5
5
# This script is placed in the public domain.
6
6
#
7
7
8
8
from distutils .core import setup
9
9
10
- import withrestart
11
- VERSION = withrestart .__version__
10
+ import withhacks
11
+ VERSION = withhacks .__version__
12
12
13
- NAME = "withrestart "
14
- DESCRIPTION = "a Pythonisation of the restart-based condition system from Common Lisp "
15
- LONG_DESC = withrestart .__doc__
13
+ NAME = "withhacks "
14
+ DESCRIPTION = "building blocks for with-statement-related hackery "
15
+ LONG_DESC = withhacks .__doc__
16
16
AUTHOR = "Ryan Kelly"
17
17
AUTHOR_EMAIL = "ryan@rfk.id.au"
18
- URL = "http://github.com/rfk/withrestart "
18
+ URL = "http://github.com/rfk/withhacks "
19
19
LICENSE = "MIT"
20
- KEYWORDS = "condition restart error exception "
20
+ KEYWORDS = "context manager with statement "
21
21
22
22
setup (name = NAME ,
23
23
version = VERSION ,
28
28
long_description = LONG_DESC ,
29
29
license = LICENSE ,
30
30
keywords = KEYWORDS ,
31
- packages = ["withrestart " ,"withrestart .tests" ],
31
+ packages = ["withhacks " ,"withhacks .tests" ],
32
32
)
33
33
Original file line number Diff line number Diff line change 38
38
39
39
from __future__ import with_statement
40
40
41
+ __ver_major__ = 0
42
+ __ver_minor__ = 1
43
+ __ver_patch__ = 0
44
+ __ver_sub__ = ""
45
+ __version__ = "%d.%d.%d%s" % (__ver_major__ ,__ver_minor__ ,
46
+ __ver_patch__ ,__ver_sub__ )
47
+
41
48
import sys
42
49
import new
43
50
import copy
You can’t perform that action at this time.
0 commit comments