Skip to content

Commit

Permalink
post-git cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Mar 2, 2013
1 parent 94076de commit a504789
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 18 deletions.
15 changes: 15 additions & 0 deletions .gitignore
@@ -0,0 +1,15 @@
bin
build
develop-eggs
dist
lib
include
man
parts

__pycache__
.*
*.dll
*.pyc
*.pyo
*.so
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,7 @@
include *.rst
include *.txt

recursive-include src *

global-exclude *.pyc
global-exclude *.pyo
2 changes: 1 addition & 1 deletion README.txt → README.rst
Expand Up @@ -2,5 +2,5 @@ Overview
========

The Products.ZSQLMethods product provides support for SQL Method objects in
Zope 2. They can be used in conjunction with any database adapter to use
Zope. They can be used in conjunction with any database adapter to use
relational database data from within the Zope environment.
37 changes: 20 additions & 17 deletions setup.py
Expand Up @@ -14,19 +14,22 @@

from setuptools import setup, find_packages

setup(name='Products.ZSQLMethods',
version = '2.13.5dev',
url='http://pypi.python.org/pypi/Products.ZSQLMethods',
license='ZPL 2.1',
description="SQL method support for Zope 2.",
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
long_description=open('README.txt').read() + '\n' +
open('CHANGES.txt').read(),
packages=find_packages('src'),
namespace_packages=['Products', 'Shared', 'Shared.DC'],
package_dir={'': 'src'},
install_requires=[
__version__ = '2.13.5dev'

setup(
name='Products.ZSQLMethods',
version=__version__,
url='http://pypi.python.org/pypi/Products.ZSQLMethods',
license='ZPL 2.1',
description="SQL method support for Zope 2.",
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.rst').read()),
packages=find_packages('src'),
namespace_packages=['Products', 'Shared', 'Shared.DC'],
package_dir={'': 'src'},
install_requires=[
'setuptools',
'Acquisition',
'DateTime',
Expand All @@ -42,7 +45,7 @@
# 'AccessControl',
# 'DocumentTemplate',
# 'zExceptions',
],
include_package_data=True,
zip_safe=False,
)
],
include_package_data=True,
zip_safe=False,
)

0 comments on commit a504789

Please sign in to comment.