-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (22 loc) · 826 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
import os
from io import open
from setuptools import setup
CUR_DIR = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(CUR_DIR, "README_en.md")
with open(README, 'r', encoding='utf-8') as fd:
long_description = fd.read()
setup(
name = 'pydocxtpl',
version = "0.2.1",
author = 'Zhang Yu',
author_email = 'zhangyu836@gmail.com',
url = 'https://github.com/zhangyu836/python-docx-templater',
packages = ['pydocxtpl'],
install_requires = ['python-docx >= 0.8.10', 'jinja2', 'six'],
description = ( 'A python module to generate docx files from a docx template' ),
long_description = long_description,
long_description_content_type = "text/markdown",
platforms = ["Any platform "],
license = 'MIT',
keywords = ['Word', 'docx', 'template']
)