-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
""" | ||
""" |