-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·46 lines (43 loc) · 1.67 KB
/
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
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
os.chdir(os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0, os.path.dirname(__file__))
from pykwiki import __version__
setup(name='pykwiki',
version = __version__,
description = 'A simple pure-python wiki engine.',
long_description = '''
A pure-python, light-weight, static wiki, blog, and website engine designed to be
fast to setup, secure, and to handle lots of web traffic.
''',
author = 'Aaron Meier',
author_email = '[email protected]',
packages = ['pykwiki','pykwiki.ext'],
package_dir={'pykwiki':'pykwiki'},
scripts=['pykwiki/scripts/pykwiki', 'pykwiki/scripts/pk'],
package_data={
'pykwiki':[
'data/*.zip',
'data/default_data/*.yaml',
'data/default_data/source/*.md',
'data/default_data/source/tpl/*.tpl',
'data/default_data/styles/*/*.yaml',
'data/default_data/styles/*/*.scss',
'data/default_data/styles/*/static/*.*',
'data/default_theme/*.html',
'data/default_theme/*.xml',
'data/default_theme/static/*.js',
'data/default_theme/static/mustachejs/*.js',
'data/default_theme/static/codehilite/*.css',
'data/default_theme/static/fonts/*.css',
'data/default_theme/static/fonts/*.ttf',
'data/default_theme/static/fonts/*.eot',
'data/default_theme/static/fonts/*.woff',
]},
url = 'http://pykwiki.nullism.com',
license = 'MIT',
install_requires = ['markdown>=2.6', 'jinja2>=2.6', 'pyyaml>=3.0', 'pyscss>=1.3.4'],
provides = ['pykwiki']
)