2013-12-17 19:27:18 +04:00
|
|
|
#!/usr/bin/env python
|
2014-10-28 01:51:27 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-03-12 11:24:22 +03:00
|
|
|
from __future__ import unicode_literals
|
2013-12-17 19:27:18 +04:00
|
|
|
|
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
2015-03-12 11:24:22 +03:00
|
|
|
name="{{ cookiecutter.project_name }}",
|
|
|
|
version="{{ cookiecutter.version }}",
|
2015-02-10 20:06:54 +03:00
|
|
|
author="{{ cookiecutter.author_name }}",
|
2015-03-12 11:24:22 +03:00
|
|
|
author_email="{{ cookiecutter.email }}",
|
2013-12-17 19:27:18 +04:00
|
|
|
packages=[
|
2015-03-12 11:24:22 +03:00
|
|
|
"{{ cookiecutter.repo_name }}",
|
2013-12-17 19:27:18 +04:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
install_requires=[
|
2015-03-12 11:24:22 +03:00
|
|
|
"Django==1.7.6",
|
2013-12-17 19:27:18 +04:00
|
|
|
],
|
|
|
|
zip_safe=False,
|
2015-03-12 11:24:22 +03:00
|
|
|
scripts=["{{ cookiecutter.repo_name }}/manage.py"],
|
2013-12-17 19:27:18 +04:00
|
|
|
)
|