Commit 6e1a695b authored by Hanno Schlichting's avatar Hanno Schlichting

Whitespace and additional git ignores.

parent 11908446
...@@ -12,7 +12,10 @@ develop/ ...@@ -12,7 +12,10 @@ develop/
develop-eggs/ develop-eggs/
dist/ dist/
eggs/ eggs/
etc/
include/ include/
lib/ lib/
log/
parts/ parts/
var/
doc/_build/ doc/_build/
include *.txt include *.txt
include *.rst
recursive-include doc * recursive-include doc *
recursive-include src * recursive-include src *
......
...@@ -22,15 +22,16 @@ if sys.platform[:3].lower() == "win": ...@@ -22,15 +22,16 @@ if sys.platform[:3].lower() == "win":
additional_install_requires += ['nt_svcutils'] additional_install_requires += ['nt_svcutils']
setup(name='Zope2', setup(
name='Zope2',
version='2.13.25.dev0', version='2.13.25.dev0',
url='http://zope2.zope.org', url='http://zope2.zope.org',
license='ZPL 2.1', license='ZPL 2.1',
description='Zope2 application server / web framework', description='Zope2 application server / web framework',
author='Zope Foundation and Contributors', author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org', author_email='zope-dev@zope.org',
long_description=file("README.txt").read() + "\n" + long_description=(open("README.txt").read() + "\n" +
file(os.path.join("doc", "CHANGES.rst")).read(), open(os.path.join("doc", "CHANGES.rst")).read()),
classifiers=[ classifiers=[
'Development Status :: 6 - Mature', 'Development Status :: 6 - Mature',
"Environment :: Web Environment", "Environment :: Web Environment",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment