This repository was archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·49 lines (42 loc) · 1.59 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
#!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
setup(
name = "Brave Mumble",
version = "0.1",
description = "Online forums software designed for the Brave Collective Alliance of EVE Online.",
author = "Alice Bevan-McGregor",
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'
],
)