lots of updates

This commit is contained in:
Ville Rantanen
2021-08-20 20:53:01 +03:00
parent db1af48957
commit b606b53a48
4 changed files with 72 additions and 38 deletions

View File

@@ -1,18 +1,18 @@
from distutils.core import setup
setup(
name = 'mirva',
packages = ['mirva'],
packages = ['mirva'],
scripts = ['scripts/mirva',
],
package_data={'':['resources/*']},
include_package_data=True,
version = '20210819',
version = '20210820',
description = 'A tool to create a web gallery from a folder of images.',
author = 'Ville Rantanen',
author_email = 'ville.q.rantanen@gmail.com',
url = 'https://bitbucket.org/MoonQ/mirva',
download_url = 'https://bitbucket.org/MoonQ/mirva/get/tip.tar.gz',
keywords = ['album', 'generator', 'javascript'],
download_url = 'https://bitbucket.org/MoonQ/mirva/get/master.zip',
keywords = ['album', 'generator', 'javascript'],
classifiers = [],
license = 'MIT',
)