-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (33 loc) · 854 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
39
40
41
42
43
from setuptools import setup
import re
import ast
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('jikji/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name = 'jikji',
packages = ['jikji'],
version = version,
description = 'Python Static website generator for Modern web',
license = 'MIT',
author = 'Youngsoo Lee',
author_email = '[email protected]',
url = 'https://github.com/Prev/jikji',
keywords = ['jikji', 'static', 'websites' 'generator', 'jinja2'],
install_requires=[
'Jinja2>=2.4',
'click>=5.0',
'Flask>=0.10',
'py>=1.4',
],
package_data={
'jikji': ['sample_proj/*', 'sample_proj/**/*', 'sample_proj/**/**/*'],
},
include_package_data=True,
entry_points={
'console_scripts': [
'jikji = jikji.cli:main',
],
},
)