-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 855 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
import django_helpers
setup(
name='django-helpers',
version=django_helpers.__version__,
packages=find_packages(),
author='Nicolas RAMY',
author_email='[email protected]',
license='MIT',
description='A set of context_processors, decorators, middlewares and others stuffs to develop quickly with Django',
long_description=open('README.rst').read(),
include_package_data=True,
zip_safe=False,
install_requires=['Django', ],
url='https://github.com/nicolasramy/django-helpers',
classifiers=[
'Development Status :: 4 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7'
],
)