mirror of
https://github.com/wassname/pyreadline.git
synced 2026-08-10 12:30:40 +08:00
pyreadline: added copyright notices, begun work on egg setup
This commit is contained in:
@@ -1,10 +1,27 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
#*****************************************************************************
|
||||
# Copyright (C) 2003-2006 Gary Bishop.
|
||||
# Copyright (C) 2006 Jorgen Stenarson. <jorgen.stenarson@bostream.nu>
|
||||
#
|
||||
# Distributed under the terms of the BSD License. The full license is in
|
||||
# the file COPYING, distributed as part of this software.
|
||||
#*****************************************************************************
|
||||
|
||||
from distutils.core import setup
|
||||
|
||||
setup(name="pyreadline",
|
||||
version="1.13-svn",
|
||||
description="Python implementation of GNU readline",
|
||||
author="Gary Bishop",
|
||||
author_email="gb@cs.unc.edu",
|
||||
packages=['pyreadline'],
|
||||
execfile('pyreadline/release.py')
|
||||
setup(name=name,
|
||||
version = version,
|
||||
description = description,
|
||||
long_description = long_description,
|
||||
author = authors["Jorgen"][0],
|
||||
author_email = authors["Jorgen"][1],
|
||||
license = license,
|
||||
url = url,
|
||||
download_url = download_url,
|
||||
platforms = platforms,
|
||||
keywords = keywords,
|
||||
packages = ['pyreadline'],
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user