-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 869 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='tablepyxl',
version='0.6.1',
description='Generate Excel documents from html tables',
url='https://github.com/martsberger/tablepyxl',
download_url='https://github.com/martsberger/tablepyxl/archive/0.6.1.tar.gz',
author='Brad Martsberger, Asma Mehjabeen, Brian Davis',
author_email='bmarts@lumere.com',
license='MIT',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
packages=find_packages(),
install_requires=['openpyxl', 'premailer', 'requests', 'lxml']
)