distutils files
This commit is contained in:
19
LICENSE.txt
Normal file
19
LICENSE.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
Copyright (c) 2016 Ville Rantanen
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||
of the Software, and to permit persons to whom the Software is furnished to do
|
||||
so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
1
qalbum/__init__.py
Normal file
1
qalbum/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from Qalbum import *
|
||||
11
scripts/Qalbum
Executable file
11
scripts/Qalbum
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import sys
|
||||
|
||||
from qalbum import execute_plain
|
||||
|
||||
if __name__ == '__main__':
|
||||
#sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(execute_plain())
|
||||
19
setup.py
Normal file
19
setup.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from distutils.core import setup
|
||||
setup(
|
||||
name = 'qalbum',
|
||||
packages = ['qalbum'],
|
||||
scripts = ['scripts/Qalbum',
|
||||
'scripts/Qalbum-thumbnailer',
|
||||
'scripts/Qalbum-descriptor'],
|
||||
package_data={'':['lib/*']},
|
||||
include_package_data=True,
|
||||
version = '2.20161005',
|
||||
description = 'A tool to create a web gallery from a folder structure of images / other files.',
|
||||
author = 'Ville Rantanen',
|
||||
author_email = 'ville.q.rantanen@gmail.com',
|
||||
url = 'https://bitbucket.org/MoonQ/qalbum',
|
||||
download_url = 'https://bitbucket.org/MoonQ/qalbum/get/tip.tar.gz',
|
||||
keywords = ['album', 'generator', 'javascript'],
|
||||
classifiers = [],
|
||||
license = 'MIT',
|
||||
)
|
||||
Reference in New Issue
Block a user