-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (40 loc) · 1.32 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
plugins = [
'Dicebot',
]
import sys
if sys.version_info < (3, 0, 0):
sys.stderr.write("Supybot requires Python 3.\n")
sys.exit(-1)
import os.path
from distutils.core import setup
packages = ['supybot.plugins.' + s for s in plugins]
package_dir = { }
package_data = { }
for plugin in plugins:
package_dir['supybot.plugins.' + plugin] = plugin
version = '1.0'
setup(
name='supybot-plugin-dicebot',
version=version,
author='Andrey Rahmatullin',
author_email='wrar@wrar.name',
url='http://github.com/wRAR/supybot-plugin-Dicebot',
description='Dicebot plugin for Supybot',
long_description='Dicebot plugin contains the commands which simulate rolling of dice.',
packages=packages,
package_dir=package_dir,
package_data=package_data,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'Topic :: Games/Entertainment :: Board Games',
],
)
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: