forked from Psycojoker/prosopopee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 827 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
#!/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='[email protected]',
url='https://github.com/Psycojoker/prosopopee',
install_requires=open("./requirements.txt", "r").read().split(),
packages=['prosopopee'],
py_modules=[],
license= 'GPLv3+',
scripts=[],
entry_points={
'console_scripts': ['prosopopee = prosopopee.prosopopee:main']
},
keywords='',
include_package_data=True,
package_data={
'prosopopee': ['static/css/*', 'static/js/*', 'static/img/*', 'templates/*.html', 'templates/sections/*'],
},
)