forked from revolunet/django-extjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (25 loc) · 1.03 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
import os
from setuptools import setup
readme = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name = 'django-extjs',
version = '0.1',
packages = ['extjs'],
requires = ['python (>= 2.4)', 'django (>= 1.0)'],
description = 'Django Form and ModelForm power for your ExtJs apps.',
long_description = readme,
author = 'Julien Bouquillon',
author_email = '[email protected]',
url = 'http://github.com/revolunet/django-extjs',
download_url = '',
license = 'BSD Like?',
keywords = 'django extjs forms models',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)