Sha256: 69057e402bcc21494aae7ac7c74876ba569a8808b142eadd7c0cb7a5853db118
Contents?: true
Size: 814 Bytes
Versions: 4
Compression:
Stored size: 814 Bytes
Contents
#!/usr/bin/env python from setuptools import setup PACKAGE = 'worklog' setup(name=PACKAGE, description='Plugin to manage the which tickets users are currently working on', keywords='trac plugin ticket working', version='0.1', url='', license='http://www.opensource.org/licenses/mit-license.php', author='Colin Guthrie', author_email='trac@colin.guthr.ie', long_description=""" I'll write this later! """, packages=[PACKAGE], package_data={PACKAGE : ['templates/*.cs', 'templates/*.html', 'htdocs/*.css', 'htdocs/*.png', 'htdocs/*.js']}, entry_points={'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE)}) #### AUTHORS #### ## Primary Author: ## Colin Guthrie ## http://colin.guthr.ie/ ## trac@colin.guthr.ie ## trac-hacks user: coling
Version data entries
4 entries across 4 versions & 1 rubygems