source: irclogsplugin/0.10/setup.py

Last change on this file was 2378, checked in by John Hampton, 16 years ago

IrcLogsPlugin:

Initial import of 0.10 code base.

Need to clean up code and make it more general. Currently very specific to the irclogs at https://pacopablo.com/irclogs

File size: 363 bytes
RevLine 
[2378]1# -*- coding: utf-8 -*-
2from setuptools import setup
3
4PACKAGE = 'irclogs'
5VERSION = '0.2'
6
7setup(
8    name=PACKAGE,
9    version=VERSION,
10    packages=['irclogs'],
11    package_data={
12        'irclogs' : ['templates/*.cs', 'htdocs/*.css']
13    },
14    entry_points = {
15        'trac.plugins': ['irclogs = irclogs']
16    },
17    install_requires = ['pyndexter>=0.2'],
18)
Note: See TracBrowser for help on using the repository browser.