-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
41 lines (38 loc) · 1.32 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
long_desc = """
Transform Excel spreadsheets
"""
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for classifiers
conf = dict(
name='databaker',
version='2.0.0',
description="DataBaker, part of QuickCode for ONS",
long_description=long_desc,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords='',
author='The Sensible Code Company Ltd',
author_email='[email protected]',
url='https://github.com/sensiblecodeio/databaker',
license='AGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
install_requires=['docopt', 'xypath>=1.1.0', 'xlutils', 'pyhamcrest'],
tests_require=[],
entry_points={
'console_scripts': [
'databaker_nbconvert = databaker.databaker_nbconvert:main',
]
},
)
if __name__ == '__main__':
setup(**conf)