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 41
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·55 lines (48 loc) · 1.5 KB
/
setup.py
File metadata and controls
executable file
·55 lines (48 loc) · 1.5 KB
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
#!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
setup(
name = "brave.core",
version = "0.1",
description = "EVE Online authentication, authorization, and API proxy service.",
author = "Alice Bevan-McGregor",
author_email = "alice@gothcandy.com",
license = "MIT",
packages = find_packages(),
include_package_data = True,
zip_safe = False,
paster_plugins = ['PasteScript', 'WebCore'],
namespace_packages = ['brave'],
tests_require = ['nose', 'webtest', 'coverage', 'mock'],
test_suite = 'nose.collector',
install_requires = [
'requests==1.1.0',
'marrow.tags',
'marrow.templating',
'braveapi',
'WebCore>=1.1.2,<2',
'MongoEngine>=0.8,<0.9',
'pymongo>=2,<3',
'Mako>=0.4.1',
'beaker>=1.5',
'blinker',
'pyyaml',
'ecdsa',
'relaxml',
'ipython',
'scrypt',
'pudb',
'webassets',
'babel',
'marrow.mailer',
'yubico',
'futures',
'zxcvbn',
'flake8',
'evelink',
'flup==1.0.2'
],
setup_requires = [
'PasteScript',
],
)