pyreadline: added copyright notices, begun work on egg setup

This commit is contained in:
jstenar
2006-01-25 20:07:13 +00:00
parent 9cdff4a3c8
commit a6887ae374
10 changed files with 202 additions and 58 deletions
+26
View File
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
#*****************************************************************************
# 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 setuptools import setup,find_packages
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'],
)