Skip to content

Commit

Permalink
Edit setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBin99 committed Apr 7, 2021
1 parent ba70148 commit 3840505
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from os import path

from setuptools import setup
from setuptools import setup, find_packages

this_directory = path.abspath(path.dirname(__file__))

Expand All @@ -10,12 +10,14 @@

setup(
name="django-vite",
version="1.0.1",
version="1.0.2",
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",
include_package_data=True,
packages=find_packages(),
requires=[
"Django (>=1.11)",
],
Expand Down

0 comments on commit 3840505

Please sign in to comment.