forked from TwigArchive/django-genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 870 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
# -*- coding: utf-8 -*-
#!/usr/bin/env python
from setuptools import setup, find_packages
version = "1.0.0"
readme = open('README.rst').read()
setup(
name='django-genesis',
version=version,
description='Management command that calls every INSTALLED_APPS {app_name}_bootstrap management command',
long_description=readme,
author='Charlie Quinn',
author_email='[email protected]',
url='https://github.com/TwigWorld/django-genesis',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django==1.6',
],
zip_safe=False,
keywords='django-genesis',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
],
)