-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (29 loc) · 1.01 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
#!/usr/bin/env python
from setuptools import setup,find_packages
setup(
name='django-simplecrud',
version='1.0b16',
description='CRUD framework for Django',
long_description="A simple Create-Review-Update-Delete framework for Django. Ready to use out-of-the-box: includes both views and templates",
keywords='django, crud, views, templates',
author='Pedro Tavares',
author_email='[email protected]',
url='https://github.com/ptav/django-simplecrud',
license='LICENSE',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
#"Django >= 1.4.0",
"six",
],
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
)