-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 688 Bytes
/
setup.py
File metadata and controls
29 lines (23 loc) · 688 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
from setuptools import setup
setup(
name= 'flextable',
version= '1.0.41',
packages= ['flextable'],
include_package_data= True,
url= 'https://github.com/chris17453/flextable/',
license='Creative Commons Attribution-Noncommercial-Share Alike license',
long_description= open('README.md').read(),
author= 'Charles Watkins',
author_email= 'charles@titandws.com',
description= '',
install_requires= [
],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
],
entry_points="""
[console_scripts]
flextable = flextable.cli:cli_main
"""
)