-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (33 loc) · 946 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
35
36
37
38
from imp import load_source
from os.path import join, dirname, abspath
from setuptools import setup, find_packages
pyll_mod = load_source('pyll', join(dirname(abspath(__file__)),
'src', 'pyll', '__init__.py'))
setup(
name = 'pyll',
version = pyll_mod.__version__,
url = pyll_mod.__url__,
license = 'BSD',
description = 'A Python-Powered Static Site Generator',
author = 'Arthur Koziel',
packages = find_packages('src'),
package_dir = {'': 'src'},
package_data={
'pyll': ['templates/default.html',
'quickstart.tar.gz'],
},
zip_safe = False,
test_suite = 'nose.collector',
# install the pyll executable
entry_points = {
'console_scripts': [
'pyll = pyll.app:main'
]
},
install_requires = [
'markdown',
'docutils',
'Jinja2',
'python-dateutil==1.5',
],
)