forked from joaoleite/requery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.19 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.19 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
# -*- coding:utf-8 -*-
from setuptools import setup
setup(
name='requery',
version='0.4.1.1',
url='http://github.com/ebertti/requery/',
author='Ezequiel Bertti',
author_email='ebertti@gmail.com',
install_requires=['django>=1.7', 'Pygments>=1.6', 'six>=1.7',],
packages=['requery'],
include_package_data=True,
license='MIT License',
platforms=['OS Independent'],
description="Simple way to store and use queries in database for use of DBA for Django Admin",
long_description=(open('README.rst').read()),
keywords='query dba repository report django',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
],
zip_safe=False,
)