-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (22 loc) · 900 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
from setuptools import setup, find_packages
__author__ = 'Alexey Zankevich'
setup(
name="django-orm-sugar",
version="0.9.0",
py_modules=['django_orm_sugar'],
author="Alexey Zankevich",
author_email="[email protected]",
description="Django ORM sugar library to simplify querying",
keywords=['Django', 'ORM', 'util', 'sugar'],
license="MIT",
platforms=['Platform Independent'],
url="https://github.com/Nepherhotep/django-orm-sugar",
install_requires=['django'],
classifiers=["Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"]
)