2013-12-17 19:27:18 +04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
|
2013-12-17 19:50:15 +04:00
|
|
|
import {{ cookiecutter.project_name }}
|
2013-12-17 19:27:18 +04:00
|
|
|
version = {{ cookiecutter.repo_name }}.__version__
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='{{ cookiecutter.project_name }}',
|
|
|
|
version=version,
|
|
|
|
author='{{ cookiecutter.full_name }}',
|
|
|
|
author_email='{{ cookiecutter.email }}',
|
|
|
|
packages=[
|
2013-12-17 19:39:16 +04:00
|
|
|
'{{ cookiecutter.project_name }}',
|
2013-12-17 19:27:18 +04:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
install_requires=[
|
2013-12-17 19:58:49 +04:00
|
|
|
'Django>=1.6.1',
|
2013-12-17 19:27:18 +04:00
|
|
|
],
|
|
|
|
zip_safe=False,
|
2013-12-17 19:50:15 +04:00
|
|
|
scripts=['{{ cookiecutter.project_name }}/manage.py'],
|
2013-12-17 19:27:18 +04:00
|
|
|
)
|