magcms/setup.py

25 lines
685 B
Python

#!/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").read().split(),
packages=[],
py_modules=[],
license= 'GPLv3+',
scripts=['prosopopee'],
keywords='',
include_package_data=True,
package_data={
'static': ['*.css', '*.js'],
'templates': ['*.html'],
},
)