mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
# We use calendar versioning
|
|
version = "2021.12.14"
|
|
|
|
with open("README.rst") as readme_file:
|
|
long_description = readme_file.read()
|
|
|
|
setup(
|
|
name="cookiecutter-django",
|
|
version=version,
|
|
description=(
|
|
"A Cookiecutter template for creating production-ready "
|
|
"Django projects quickly."
|
|
),
|
|
long_description=long_description,
|
|
author="Daniel Roy Greenfeld",
|
|
author_email="pydanny@gmail.com",
|
|
url="https://github.com/cookiecutter/cookiecutter-django",
|
|
packages=[],
|
|
license="BSD",
|
|
zip_safe=False,
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"Framework :: Django :: 3.2",
|
|
"Intended Audience :: Developers",
|
|
"Natural Language :: English",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Topic :: Software Development",
|
|
],
|
|
keywords=(
|
|
"cookiecutter, Python, projects, project templates, django, "
|
|
"skeleton, scaffolding, project directory, setup.py"
|
|
),
|
|
)
|