-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 938 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 938 Bytes
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-raw-query',
version='0.0.4',
author=u'Jon Combe',
author_email='me@joncombe.net',
packages=find_packages(),
include_package_data=True,
install_requires=[],
license='BSD licence, see LICENCE file',
description='Simple raw database query helper for Django',
long_description='View readme on github: https://github.com/joncombe/django-raw-query',
url='https://github.com/joncombe/django-raw-query',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
zip_safe=False,
)