-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (29 loc) · 955 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
25
26
27
28
29
from distutils.core import setup
setup(
name='sdtables',
packages=['sdtables', 'sdtables_cli'],
version='2.0.2',
license='MIT',
description='sdtables (schema data tables) is a module providing convenient wrapper functions for working with tabulated from various sources including MS Excel',
author='Richard Cunningham',
author_email='[email protected]',
url='https://github.com/cunningr/sdtables',
download_url='https://github.com/cunningr/sdtables/archive/2.0.1.zip',
keywords=['Excel', 'tables', 'schema'],
install_requires=[
'openpyxl==3.0.7',
'jsonschema==3.2.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
entry_points={
'console_scripts': [
'sdtables = sdtables_cli.cli:main'
]
}
)