-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·43 lines (39 loc) · 1.33 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
#!/usr/bin/env python
from distutils.core import setup
setup(
# metadata
name = 'lalita',
version = '0.1.3',
maintainer = 'Facundo Batista',
maintainer_email = '[email protected]',
description = 'Yet another IRC bot.',
long_description = 'Yet another IRC bot, one where new functionality is '\
'simple to create just adding easy-to-write plugins.',
license = 'GPL v3',
keywords = ['irc', 'bot', 'twisted', 'plugin'],
url = 'https://launchpad.net/lalita/',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Topic :: Communications :: Chat :: Internet Relay Chat',
],
# content
packages = ['lalita', 'lalita.core', 'lalita.core.tests',
'lalita.core.tests.plugins', 'lalita.plugins',
'lalita.plugins.randomer_utils', 'lalita.plugins.tests'],
package_data = {
'lalita.plugins.randomer_utils': ['#pyar.log'],
},
# scripts
scripts = ['lalita/ircbot.py'],
# dependencies
requires = [
'twisted',
'beautifulsoup >= 3.1',
'chardet',
],
)