-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
45 lines (39 loc) · 1.25 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
short_description = 'Django on Google AppEngine'
long_description = open(
os.path.join(os.path.dirname(__file__), 'README.rst')
).read()
version = open(
os.path.join(os.path.dirname(__file__), 'VERSION')
).read()
license = open(
os.path.join(os.path.dirname(__file__), 'LICENSE')
).read()
setup(name='django-rocket-engine',
version=version,
packages=find_packages(),
author='Sebastian Pawluś',
author_email='[email protected]',
url='http://readthedocs.org/projects/django-rocket-engine/',
description=short_description,
keywords="Django AppEngine Google CloudSQL SQL",
license=license,
long_description=long_description,
install_requires=[
'virtualenv>=1.7.1.2',
],
include_package_data=True,
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
test_suite='tests.runtests.runtests'
)