-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 735 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 735 Bytes
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
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='pytemplateproc',
version='0.4.2',
packages=find_packages(),
scripts = [
'pytemplate.py',
'secretary.py',
'tests.py'],
install_requires = ['jinja2'],
test_suite='tests',
include_package_data=True,
# entry_points={
# 'pytemplate': [
# 'pytemplate = pytemplate',
# ]
# },
author = "Yuri V. Yakovlev",
author_email = "krotos139@gmail.com",
description = "Template processor",
license = "GPL v3",
keywords = "jinja2 odt text template",
url = "https://github.com/krotos139/pytemplate",
long_description=open(join(dirname(__file__), 'README.md')).read(),
)