From 51ea54a9c2764a08d05925745d8539af57259af9 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 9 Dec 2015 08:18:42 +0100 Subject: [PATCH] [enh] add a setup.py --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e0bcd3d --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +# -*- coding:Utf-8 -*- + +from setuptools import setup + +setup(name='prosopopee', + version='0.1', + description='excposure.co clone in a static web generating tool', + author='Laurent Peuch', + #long_description='', + author_email='cortex@worlddomination.be', + url='https://github.com/Psycojoker/prosopopee', + install_requires=open("./requirements.txt", "r").split(), + packages=[], + py_modules=[], + license= 'GPLv3+', + scripts=['prosopopee'], + keywords='', + )