diff --git a/MANIFEST.in b/MANIFEST.in index 02db029..7730404 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,4 +6,6 @@ prune smartshareserver prune .git exclude .gitignore exclude db.sqlite3 -exclude manage.py \ No newline at end of file +exclude manage.py +global-exclude __pycache__ +global-exclude *.py[co] \ No newline at end of file diff --git a/setup.py b/setup.py index 0ea9aa1..b481e86 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,12 @@ 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="aa.smpro@gmail.com", description="simple django app for sharing files over http / https.", @@ -13,6 +14,7 @@ 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", diff --git a/smartshare/__init__.py b/smartshare/__init__.py index 97d34fd..f939467 100644 --- a/smartshare/__init__.py +++ b/smartshare/__init__.py @@ -1,8 +1,8 @@ __title__ = 'django smart share' -__version__ = '0.8.7' +__version__ = '0.8.8' __author__ = 'Abolfazl Amiri' __author_email__ = 'aa.smpro@gmail.com' __license__ = 'GNU General Public License v3 (GPLv3)' __description__ = F"""django smart share {__version__} simple django app for sharing files over http / https. -""" \ No newline at end of file +"""