-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
24 lines (22 loc) · 870 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 = 'xltpl',
version = "0.20",
author = 'Zhang Yu',
author_email = '[email protected]',
url = 'https://github.com/zhangyu836/xltpl',
packages = ['xltpl'],
install_requires = ['xlrd >= 1.2.0', 'xlwt >= 1.3.0', 'openpyxl >= 3.1.0', 'jinja2', 'six'],
description = ( 'A python module to generate xls/x files from a xls/x template' ),
long_description = long_description,
long_description_content_type = "text/markdown",
platforms = ["Any platform "],
license = 'MIT',
keywords = ['Excel', 'xls', 'xlsx', 'spreadsheet', 'workbook', 'template']
)