-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (32 loc) · 993 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#-*- coding: utf-8 -*-
import os
import codecs
from distutils.core import setup
from setuptools import find_packages, findall
version = __import__('yasgg').get_version()
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
setup(
name='YASGG',
version=version,
url='https://github.com/nomnomnom/yasgg',
author='nomnomnom',
author_email='[email protected]',
description=('YASGG is a static gallery generator with optional encryption support written in python.'),
long_description=read(os.path.join(os.path.dirname(__file__), 'README.md')),
license='Beer',
packages=find_packages(),
include_package_data=True,
scripts=['yasgg/bin/yasggctl'],
install_requires=[
'Jinja2==2.7.1',
'MarkupSafe==0.18',
'Pillow==2.2.1',
'YASGG==0.1',
'beautifulsoup4==4.3.2',
'docopt==0.6.1',
'jac==0.9',
'pycrypto==2.6.1',
'tendo==0.2.4',
'wsgiref==0.1.2'
],
)