magcms/setup.py

27 lines
827 B
Python
Raw Normal View History

2015-12-09 08:18:42 +01:00
#!/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',
2015-12-09 08:20:24 +01:00
install_requires=open("./requirements.txt", "r").read().split(),
packages=['prosopopee'],
2015-12-09 08:18:42 +01:00
py_modules=[],
license= 'GPLv3+',
scripts=[],
entry_points={
'console_scripts': ['prosopopee = prosopopee.prosopopee:main']
},
2015-12-09 08:18:42 +01:00
keywords='',
include_package_data=True,
package_data={
'prosopopee': ['static/css/*', 'static/js/*', 'static/img/*', 'templates/*.html', 'templates/sections/*'],
},
2015-12-09 08:18:42 +01:00
)