Skip to content

Commit

Permalink
egg cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jone committed Jan 18, 2010
1 parent e2a4180 commit c024a91
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
1 change: 1 addition & 0 deletions collective/jqhistory/version.txt
@@ -0,0 +1 @@
1.0a1-dev
6 changes: 3 additions & 3 deletions docs/HISTORY.txt
@@ -1,8 +1,8 @@
Changelog Changelog
========= =========


0.1 - Unreleased
----------------


* Initial release 1.0
---


* Initial release
28 changes: 16 additions & 12 deletions setup.py
@@ -1,32 +1,36 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os


version = '0.1' version = open('collective/jqhistory/version.txt').read().strip()
maintainer = 'Victor Baumann'


setup(name='collective.jqhistory', setup(name='collective.jqhistory',
version=version, version=version,
description="", description="" + \
long_description=open("README.txt").read() + "\n" + ' (Maintainer %s)' % maintainer,
open(os.path.join("docs", "HISTORY.txt")).read(), long_description=open("README.txt").read() + "\n" + \
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[ classifiers=[
"Programming Language :: Python", "Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
], ],
keywords='', keywords='jquery history',
author='Victor BAUMANN', author='%s, 4teamwork GmbH' % maintainer,
author_email='v.baumann@4teamwork.ch', author_email='mailto:info@4teamwork.ch',
url='', url='http://psc.4teamwork.ch/4teamwork/ftw/collective.jqhistory/',
license='GPL', license='GPL2',
packages=find_packages(exclude=['ez_setup']), packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective'], namespace_packages=['collective'],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=[ install_requires=[
'setuptools', 'setuptools',
# -*- Extra requirements: -*- # -*- Extra requirements: -*-
], ],
entry_points=""" entry_points="""
# -*- Entry points: -*- # -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = opengever
""", """,
) )

0 comments on commit c024a91

Please sign in to comment.