Skip to content

Commit bf5557b

Browse files
committed
v0.2
1 parent de54e5f commit bf5557b

2 files changed

Lines changed: 20 additions & 3 deletions

File tree

cslbot_tjhsst.egg-info/PKG-INFO

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,26 @@
11
Metadata-Version: 1.1
22
Name: cslbot-tjhsst
3-
Version: 0.1
3+
Version: 0.2
44
Summary: TJHSST-specific commands for CslBot.
55
Home-page: https://github.com/tjcsl/cslbot-tjhsst
66
Author: The TJHSST Computer Systems Lab
77
Author-email: cslbot@pefoley.com
88
License: GPL
9-
Description: UNKNOWN
9+
Description: cslbot-tjhsst
10+
=============
11+
12+
tjhsst-specific commands for http://github.com/tjcsl/cslbot
13+
14+
15+
To install:
16+
17+
pip install git+git://github.com/tjcsl/cslbot-tjhsst
18+
19+
add "extramodules: cslbot-tjhsst" to the [core] section of config.cfg
20+
1021
Platform: UNKNOWN
1122
Classifier: Development Status :: 4 - Beta
1223
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
1324
Classifier: Programming Language :: Python :: 3.4
25+
Classifier: Programming Language :: Python :: 3.5
1426
Classifier: Topic :: Communications :: Chat :: Internet Relay Chat

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@
1717

1818
from setuptools import setup, find_packages
1919

20+
with open('README.rst', 'r') as f:
21+
long_description = f.read()
22+
2023
setup(
2124
name="cslbot-tjhsst",
2225
description="TJHSST-specific commands for CslBot.",
26+
long_description=long_description,
2327
author="The TJHSST Computer Systems Lab",
2428
author_email="cslbot@pefoley.com",
2529
url="https://github.com/tjcsl/cslbot-tjhsst",
26-
version="0.1",
30+
version="0.2",
2731
license="GPL",
2832
zip_safe=False,
2933
packages=find_packages(),
@@ -35,6 +39,7 @@
3539
'Development Status :: 4 - Beta',
3640
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
3741
'Programming Language :: Python :: 3.4',
42+
'Programming Language :: Python :: 3.5',
3843
'Topic :: Communications :: Chat :: Internet Relay Chat',
3944
],
4045
)

0 commit comments

Comments
 (0)