-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
60 lines (55 loc) · 1.69 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
57
58
59
60
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
CONTRIBUTORS = open(os.path.join(here, 'CONTRIBUTORS.rst')).read()
requires = [
'setuptools',
'ipdb',
'pyramid',
'pyramid_tm',
'pyramid_debugtoolbar',
'pyramid_beaker',
'pymongo',
'rfc3339',
'requests',
'tweepy',
'waitress',
'Paste',
'bleach',
'pika',
'Pillow',
'maxcarrot',
'maxutils'
]
test_requires = ['WebTest', 'mock', 'robotsuite', 'pyramid_robot']
docs_requires = ['manuel', 'pygments', 'sphinx_bootstrap_theme']
setup(name='max',
version='5.3.27.dev0',
description='Activity Stream and Subscription Enhanced Engine (Motor d\'Activitat i subscripcions eXtes)',
long_description=README + '\n\n' + CHANGES + '\n\n' + CONTRIBUTORS,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='UPCnet Content Management Team',
author_email='[email protected]',
url='https://github.com/upcnet/max',
keywords='web pylons pyramid mongodb',
packages=['max'],
include_package_data=True,
zip_safe=False,
install_requires=requires + docs_requires,
tests_require=requires + test_requires,
test_suite="max.tests",
extras_require={
'test': ['WebTest', 'mock', 'HTTPretty', 'manuel', 'pyramid-beaker']
},
entry_points="""
[paste.app_factory]
main = max:main
""",
)