-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name="helga-contrib-updates",
version="1.0.4",
packages=find_packages(),
py_modules=['helga_contrib_updates'],
author="Dan Cobb, Shaun Duncan",
author_email="[email protected], [email protected]",
description="A helga plugin to list and record IRC channel updates.",
license='MIT',
url="https://github.com/cobbdb/helga-contrib-updates",
keywords="helga plugin irc standup",
entry_points={
'helga_plugins': [
'updates = helga_contrib_updates:updates',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Communications :: Chat',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'Topic :: Software Development'
]
)