first version

This commit is contained in:
Ville Rantanen
2021-06-01 10:56:20 +03:00
commit 91355cf05b
11 changed files with 565 additions and 0 deletions

18
setup.py Normal file
View File

@@ -0,0 +1,18 @@
from distutils.core import setup
setup(
name = 'mirva',
packages = ['mirva'],
scripts = ['scripts/mirva',
],
package_data={'':['resources/*']},
include_package_data=True,
version = '20210601',
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'],
classifiers = [],
license = 'MIT',
)