forked from cookiecutter/cookiecutter-django
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
42 lines (39 loc) · 1.33 KB
/
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
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# We use calendar versioning
version = "2023.11.14"
with open("README.md") as readme_file:
long_description = readme_file.read()
setup(
name="cookiecutter-vue3-django",
version=version,
description=("A Vue3 + Vite template for creating production-ready Django projects quickly."),
long_description=long_description,
author="Mike Hoolehan, Daniel Roy Greenfeld",
author_email="[email protected]",
url="https://github.com/ilikerobots/cookiecutter-django",
packages=[],
license="BSD",
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: JavaScript",
"Topic :: Software Development",
],
keywords=(
"cookiecutter, vue, vite, Python, projects, project templates, django, "
"skeleton, scaffolding"
),
)