-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
22 lines (20 loc) · 815 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
setup(name = 'django-custom-query',
version = '0.4.0',
description = 'Custom user query parser for Django ORM',
long_description = open(os.path.join(os.path.dirname(__file__), "README")).read(),
author = "Luis Fagundes",
author_email = "[email protected]",
license = "The MIT License",
packages = find_packages(),
install_requires = ['django', 'sqlparse'],
classifiers = [
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
url = 'http://django-custom-query.readthedocs.io/',
)