-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
executable file
·33 lines (26 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
27
28
29
30
31
32
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
open('MANIFEST.in', 'w').write('\n'.join((
"include *.md",
"recursive-include django_quicky *.html",
)))
setup(
name="django-quicky",
version="0.7.2",
packages=find_packages('.'),
author="Sam et Max",
author_email="[email protected]",
description="A collection of tools to make setting up Django quicker.",
long_description=open('README.md').read(),
include_package_data=True,
install_requires=['django'],
classifiers=[
'Programming Language :: Python',
"Intended Audience :: Information Technology",
"License :: OSI Approved :: zlib/libpng License",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3"
],
url="https://github.com/sametmax/django-quicky"
)