-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·56 lines (53 loc) · 1.82 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
51
52
53
54
55
56
#!/usr/bin/env python
from distutils.core import setup, Command
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys,subprocess
errno = subprocess.call([sys.executable, 'runtest.py'])
raise SystemExit(errno)
setup(
name = 'emma',
version = '0.2',
description = 'Bot for digital assembly',
author = 'Ruben Pollan',
author_email = '[email protected]',
url = 'https://gitorious.org/emma',
download_url = "https://gitorious.org/emma/emma/archive-tarball/master",
keywords = ["bot", "email", "irc", "assembly"],
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: System Administrators",
"License :: Public Domain",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Topic :: Communications :: Email"],
packages = ['emma',
'emma.module',
'emma.module.irc_moderator',
'emma.module.find_email',
'emma.module.reminder',
'emma.module.email2wiki',
'emma.module.help',
'emma.interface',
'emma.interface.email',
'emma.interface.irc',
'emma.interface.mediawiki',
'emma.interface.xmpp'],
package_data={'emma': ['locale/*/*/*']},
data_files = [('etc/init.d', ['data/init.d/emma']),
('etc', ['data/emma.cfg'])],
scripts = ['emm', 'bin/mbox2emma'],
license = 'WTFPL',
long_description = open('README').read(),
cmdclass = {'test': PyTest},
)