Skip to content

Commit 4cf8292

Browse files
committed
Add packaging scripts
1 parent 7f7c010 commit 4cf8292

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
include LICENSE

setup.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from os import path
2+
3+
from setuptools import setup
4+
5+
this_directory = path.abspath(path.dirname(__file__))
6+
7+
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
8+
README = f.read()
9+
10+
11+
setup(
12+
name="django-vite",
13+
version="1.0.0",
14+
description="Integration of ViteJS in a Django project.",
15+
long_description=README,
16+
long_description_content_type="text/markdown",
17+
author="MrBin99",
18+
url="https://github.com/MrBin99/django-vite",
19+
requires=[
20+
"Django (>=1.11)",
21+
],
22+
install_requires=[
23+
"Django>=1.11",
24+
],
25+
)

0 commit comments

Comments
 (0)