Skip to content

Commit

Permalink
Add packaging scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBin99 committed Apr 3, 2021
1 parent 7f7c010 commit 4cf8292
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include README.md
include LICENSE
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from os import path

from setuptools import 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="1.0.0",
description="Integration of ViteJS in a Django project.",
long_description=README,
long_description_content_type="text/markdown",
author="MrBin99",
url="https://github.com/MrBin99/django-vite",
requires=[
"Django (>=1.11)",
],
install_requires=[
"Django>=1.11",
],
)

0 comments on commit 4cf8292

Please sign in to comment.