-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
41 lines (38 loc) · 1.12 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
#!/usr/bin/env python
"""
Logan
======
Logan is a toolkit for running standalone Django applications. It provides you
with tools to create a CLI runner, manage settings, and the ability to bootstrap
the process.
:copyright: (c) 2012 David Cramer.
:license: Apache License 2.0, see LICENSE for more details.
"""
from setuptools import setup, find_packages
setup(
name='logan',
version='0.7.2',
author='David Cramer',
author_email='[email protected]',
url='http://github.com/dcramer/logan',
description='Logan is a toolkit for building standalone Django applications.',
packages=find_packages(exclude=["tests"]),
long_description=__doc__,
zip_safe=False,
install_requires=[],
tests_require=[
'django>=1.5',
'mock>=0.8.0',
'nose>=1.1.2'
],
test_suite='nose.collector',
license='Apache License 2.0',
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)