forked from MrBin99/django-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.26 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
43
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
README = f.read()
setup(
name="django-vite",
version="2.1.3",
description="Integration of Vite in a Django project.",
long_description=README,
long_description_content_type="text/markdown",
author="MrBin99",
url="https://github.com/MrBin99/django-vite",
license="Apache License, Version 2.0",
include_package_data=True,
packages=find_packages(),
requires=[
"Django (>=3.2)",
],
install_requires=[
"Django>=3.2",
],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
extras_require={"dev": ["black"]},
)