Skip to content

Commit

Permalink
addin static / templates to wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
aasmpro committed Oct 2, 2018
1 parent 9e2948f commit 1908857
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ prune smartshareserver
prune .git
exclude .gitignore
exclude db.sqlite3
exclude manage.py
exclude manage.py
global-exclude __pycache__
global-exclude *.py[co]
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import setuptools
from smartshare import __version__

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="djangosmartshare",
version="0.8.7",
version=__version__,
author="Abolfazl Amiri",
author_email="[email protected]",
description="simple django app for sharing files over http / https.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aasmpro/djangosmartshare",
packages=setuptools.find_packages(exclude=['smartshareserver']),
include_package_data=True,
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
Expand Down
4 changes: 2 additions & 2 deletions smartshare/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
__title__ = 'django smart share'
__version__ = '0.8.7'
__version__ = '0.8.8'
__author__ = 'Abolfazl Amiri'
__author_email__ = '[email protected]'
__license__ = 'GNU General Public License v3 (GPLv3)'
__description__ = F"""django smart share {__version__}
simple django app for sharing files over http / https.
"""
"""

0 comments on commit 1908857

Please sign in to comment.