diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-12-22 01:48:28 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-12-22 01:48:28 (GMT) |
commit | 18091540db294eb4566129a9b8bacb85a676a205 (patch) | |
tree | cd0d156684ef2099fee0f9da84bd47a1f0429040 /Lib | |
parent | ff002b93057d1ba8662caed8f9bcbb643fe66c8a (diff) | |
download | cpython-18091540db294eb4566129a9b8bacb85a676a205.zip cpython-18091540db294eb4566129a9b8bacb85a676a205.tar.gz cpython-18091540db294eb4566129a9b8bacb85a676a205.tar.bz2 |
Add configuration for packaging.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/setup.cfg | 4 | ||||
-rw-r--r-- | Lib/idlelib/setup.py | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Lib/idlelib/setup.cfg b/Lib/idlelib/setup.cfg new file mode 100644 index 0000000..bff02fe --- /dev/null +++ b/Lib/idlelib/setup.cfg @@ -0,0 +1,4 @@ +[bdist_rpm] +release = 1 +packager = Kurt B. Kaiser <kbk@shore.net> +requires = python2, python2-tkinter diff --git a/Lib/idlelib/setup.py b/Lib/idlelib/setup.py index 02fd997..ac6e6db 100644 --- a/Lib/idlelib/setup.py +++ b/Lib/idlelib/setup.py @@ -104,6 +104,9 @@ setup(name="IDLEfork", description = "IDLEfork, the Developmental Python IDE", author = "Guido van Rossum et. al.", author_email = "idle-dev@python.org", + maintainer = "Kurt B. Kaiser", + maintainer_email = "kbk@shore.net", + license = "PSF: www.python.org", url = "https://sourceforge.net/projects/idlefork/", long_description = """IDLE is a Tkinter based IDE for Python. It is written in 100% pure Python |