This repository was archived by the owner on Apr 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.39 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.39 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
# -*- coding: utf-8 -*-
"""Setup file for easy installation"""
from os.path import join, dirname
from setuptools import setup
version = '1.1'
LONG_DESCRIPTION = """
Smarter declarative style generic views for Django.
"""
def long_description():
"""Return long description from README.rst if it's present
because it doesn't get installed."""
try:
return open(join(dirname(__file__), 'README.rst')).read()
except IOError:
return LONG_DESCRIPTION
setup(name='django-smarter',
version=version,
author='Alexey Kinyov',
author_email='rudy@05bit.com',
description='Smarter declarative style generic views for Django.',
license='BSD',
keywords='django, application, scaffolding, crud, views, utility',
url='https://github.com/05bit/django-smarter',
packages=['smarter',],
include_package_data=True,
long_description=long_description(),
# install_requires=['Django>=1.4',],
classifiers=['Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'])