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 ce31bb6 commit fa18acb
Show file tree
Hide file tree
Showing 50 changed files with 46 additions and 28 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.
8 changes: 5 additions & 3 deletions MANIFEST.in
@@ -1,5 +1,7 @@
include *
include *.rst
include *.txt

recursive-include Products *
recursive-include src *

global-exclude *pyc
global-exclude *.pyc
global-exclude *.pyo
6 changes: 0 additions & 6 deletions Products/__init__.py

This file was deleted.

4 changes: 4 additions & 0 deletions README.rst
@@ -0,0 +1,4 @@
Overview
========

Zope Version Control for the Zope application server.
2 changes: 0 additions & 2 deletions README.txt

This file was deleted.

38 changes: 21 additions & 17 deletions setup.py
@@ -1,28 +1,32 @@
from setuptools import setup, find_packages

__version__ = '1.1.4dev'

setup(name='Products.ZopeVersionControl',
version='1.1.4dev',
description="Zope Version Control",
long_description=open("CHANGES.txt").read(),
classifiers=[
setup(
name='Products.ZopeVersionControl',
version=__version__,
description="Zope Version Control",
long_description=(open('README.rst').read() + "\n" +
open('CHANGES.rst').read()),
classifiers=[
'Framework :: Zope2',
],
license='ZPL',
author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org',
url='http://pypi.python.org/pypi/Products.ZopeVersionControl',
packages=find_packages(),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
],
license='ZPL',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
url='http://pypi.python.org/pypi/Products.ZopeVersionControl',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.interface',
'Acquisition',
'DateTime',
'transaction',
'ZODB3',
'Zope2',
],
)
],
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions src/Products/__init__.py
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)

0 comments on commit fa18acb

Please sign in to comment.