forked from shaffooo/django_nplusone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 859 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
23
24
25
26
27
28
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="django_nplusone",
version="0.0.5",
author="Shafiq Ur Rahman",
author_email="[email protected]",
description="Discover possible N+1 queries in your code base during development",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/shaffooo/django_nplusone",
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
"Programming Language :: Python :: 2",
],
install_requires=[
'Django>=1.11.20',
],
python_requires='>=2.7',
)