File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Metadata-Version: 1.1
22Name: cslbot-tjhsst
3- Version: 0.1
3+ Version: 0.2
44Summary: TJHSST-specific commands for CslBot.
55Home-page: https://github.com/tjcsl/cslbot-tjhsst
66Author: The TJHSST Computer Systems Lab
77Author-email: cslbot@pefoley.com
88License: 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+
1021Platform: UNKNOWN
1122Classifier: Development Status :: 4 - Beta
1223Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
1324Classifier: Programming Language :: Python :: 3.4
25+ Classifier: Programming Language :: Python :: 3.5
1426Classifier: Topic :: Communications :: Chat :: Internet Relay Chat
Original file line number Diff line number Diff line change 1717
1818from setuptools import setup , find_packages
1919
20+ with open ('README.rst' , 'r' ) as f :
21+ long_description = f .read ()
22+
2023setup (
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 (),
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)
You can’t perform that action at this time.
0 commit comments