forked from bravecollective/jabber-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (45 loc) · 1.72 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
#!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
setup(
name = "Brave Jabber",
version = "0.1",
description = "Online forums software designed for the Brave Collective Alliance of EVE Online.",
author = "Alice Bevan-McGregor",
author_email = "[email protected]",
license = "MIT",
packages = find_packages(),
include_package_data = True,
zip_safe = False,
paster_plugins = ['PasteScript', 'WebCore'],
namespace_packages = ['brave'],
tests_require = ['nose', 'webtest', 'coverage'],
test_suite = 'nose.collector',
dependency_links = [
'https://github.com/marrow/marrow.tags/archive/develop.zip#egg=marrow.tags',
'https://github.com/marrow/marrow.templating/archive/develop.zip#egg=marrow.templating',
'https://github.com/marrow/WebCore/archive/develop.zip#egg=WebCore'
'https://github.com/bravecollective/api/archive/develop.zip#egg=brave.api',
],
install_requires = [
'requests==1.1.0',
'marrow.tags',
'marrow.templating',
'brave.api',
'zxcvbn',
'WebCore>=1.1.2',
'MongoEngine>=0.7.999',
'Mako>=0.4.1',
'beaker>=1.5',
'blinker',
'ipython',
'pudb',
'babel',
'marrow.mailer',
'futures',
'scrypt'
],
entry_points={
'paste.global_paster_command': [ "startAuth = brave.jabber.shell:ShellCommand", ]
},
)