-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (44 loc) · 2.02 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
import sys
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
#Remember to modify j25.__init__.VERSION
version = '0.5.8'
required_packages = ['mako >= 0.3.6',
'mongoengine >= 0.5',
'routes >= 1.12.3',
'simplejson >= 2.1.2',
'celery >= 2.3.3',
'WebOb >= 1.0.8',
'Beaker >= 1.5.4',
'python-memcached >= 1.47'
]
if sys.version_info < (2, 7):
required_packages.append('importlib')
console_scripts = ['j25 = j25.scripts.run:main']
setup(name='j25framework',
description="A highly scalable REST application development framework",
long_description="A highly scalable REST application development framework",
version=version,
url='http://confluence.cloud9ers.com/display/j25www/',
author="Cloud Niners Ltd.",
author_email="[email protected]",
packages=find_packages(exclude=['test', 'test.*', 'rbac', 'rbac.*', ]),
zip_safe=False,
install_requires= required_packages,
entry_points = {
'console_scripts': console_scripts
},
license = "LGPLv3",
classifiers = ['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Software Development :: Libraries :: Application Frameworks'],
)