1- # Generated by Medikit 0.7.2 on 2019-06-01 .
1+ # Generated by Medikit 0.7.3 on 2019-07-20 .
22# All changes will be overriden.
33# Edit Projectfile and run “make update” (or “medikit update”) to regenerate.
44
5+ from setuptools import setup , find_packages
56from codecs import open
67from os import path
78
8- from setuptools import find_packages , setup
9-
109here = path .abspath (path .dirname (__file__ ))
1110
1211# Py3 compatibility hacks, borrowed from IPython.
@@ -21,88 +20,75 @@ def execfile(fname, globs, locs=None):
2120
2221# Get the long description from the README file
2322try :
24- with open (path .join (here , " README.rst" ), encoding = " utf-8" ) as f :
23+ with open (path .join (here , ' README.rst' ), encoding = ' utf-8' ) as f :
2524 long_description = f .read ()
2625except :
27- long_description = ""
26+ long_description = ''
2827
2928# Get the classifiers from the classifiers file
30- tolines = lambda c : list (filter (None , map (lambda s : s .strip (), c .split (" \n " ))))
29+ tolines = lambda c : list (filter (None , map (lambda s : s .strip (), c .split (' \n ' ))))
3130try :
32- with open (path .join (here , " classifiers.txt" ), encoding = " utf-8" ) as f :
31+ with open (path .join (here , ' classifiers.txt' ), encoding = ' utf-8' ) as f :
3332 classifiers = tolines (f .read ())
3433except :
3534 classifiers = []
3635
3736version_ns = {}
3837try :
39- execfile (path .join (here , " bonobo/_version.py" ), version_ns )
38+ execfile (path .join (here , ' bonobo/_version.py' ), version_ns )
4039except EnvironmentError :
41- version = " dev"
40+ version = ' dev'
4241else :
43- version = version_ns .get (" __version__" , " dev" )
42+ version = version_ns .get (' __version__' , ' dev' )
4443
4544setup (
46- author = "Romain Dorgueil" ,
47- author_email = "romain@dorgueil.net" ,
48- data_files = [
49- (
50- "share/jupyter/nbextensions/bonobo-jupyter" ,
51- [
52- "bonobo/contrib/jupyter/static/extension.js" ,
53- "bonobo/contrib/jupyter/static/index.js" ,
54- "bonobo/contrib/jupyter/static/index.js.map" ,
55- ],
56- )
57- ],
58- description = ("Bonobo, a simple, modern and atomic extract-transform-load toolkit for " "python 3.5+." ),
59- license = "Apache License, Version 2.0" ,
60- name = "bonobo" ,
61- python_requires = ">=3.5" ,
45+ author = 'Romain Dorgueil' ,
46+ author_email = 'romain@dorgueil.net' ,
47+ data_files = [('share/jupyter/nbextensions/bonobo-jupyter' , [
48+ 'bonobo/contrib/jupyter/static/extension.js' ,
49+ 'bonobo/contrib/jupyter/static/index.js' ,
50+ 'bonobo/contrib/jupyter/static/index.js.map'
51+ ])],
52+ description =
53+ ('Bonobo, a simple, modern and atomic extract-transform-load toolkit for '
54+ 'python 3.5+.' ),
55+ license = 'Apache License, Version 2.0' ,
56+ name = 'bonobo' ,
57+ python_requires = '>=3.5' ,
6258 version = version ,
6359 long_description = long_description ,
6460 classifiers = classifiers ,
65- packages = find_packages (exclude = [" ez_setup" , " example" , " test" ]),
61+ packages = find_packages (exclude = [' ez_setup' , ' example' , ' test' ]),
6662 include_package_data = True ,
6763 install_requires = [
68- "cached-property ~= 1.4" ,
69- "fs ~= 2.0" ,
70- "graphviz >= 0.8, < 0.9" ,
71- "jinja2 ~= 2.9" ,
72- "mondrian ~= 0.8" ,
73- "packaging ~= 19.0" ,
74- "psutil ~= 5.4" ,
75- "python-slugify ~= 1.2.0" ,
76- "requests ~= 2.0" ,
77- "stevedore ~= 1.27" ,
78- "whistle ~= 1.0" ,
64+ 'cached-property ~= 1.4' , 'fs ~= 2.0' , 'graphviz >= 0.8, < 0.9' ,
65+ 'jinja2 ~= 2.9' , 'mondrian ~= 0.8' , 'packaging ~= 19.0' ,
66+ 'psutil ~= 5.4' , 'python-slugify ~= 1.2.0' , 'requests ~= 2.0' ,
67+ 'stevedore ~= 1.27' , 'whistle ~= 1.0'
7968 ],
8069 extras_require = {
81- "dev" : [
82- "cookiecutter >= 1.5, < 1.6" ,
83- "coverage ~= 4.4" ,
84- "pytest ~= 3.4" ,
85- "pytest-cov ~= 2.5" ,
86- "pytest-timeout >= 1, < 2" ,
87- "sphinx ~= 1.7" ,
88- "sphinx-sitemap >= 0.2, < 0.3" ,
70+ 'dev' : [
71+ 'cookiecutter >= 1.5, < 1.6' , 'coverage ~= 4.5' , 'pytest ~= 4.6' ,
72+ 'pytest-cov ~= 2.7' , 'pytest-timeout >= 1, < 2' , 'sphinx ~= 1.7' ,
73+ 'sphinx-sitemap >= 0.2, < 0.3'
8974 ],
90- " docker" : [" bonobo-docker ~= 0.6.0a1" ],
91- " jupyter" : [" ipywidgets ~= 6.0" , " jupyter ~= 1.0" ],
92- " sqlalchemy" : [" bonobo-sqlalchemy ~= 0.6.0a1" ],
75+ ' docker' : [' bonobo-docker ~= 0.6.0a1' ],
76+ ' jupyter' : [' ipywidgets ~= 6.0' , ' jupyter ~= 1.0' ],
77+ ' sqlalchemy' : [' bonobo-sqlalchemy ~= 0.6.0a1' ]
9378 },
9479 entry_points = {
95- " bonobo.commands" : [
96- " convert = bonobo.commands.convert:ConvertCommand" ,
97- " download = bonobo.commands.download:DownloadCommand" ,
98- " examples = bonobo.commands.examples:ExamplesCommand" ,
99- " init = bonobo.commands.init:InitCommand" ,
100- " inspect = bonobo.commands.inspect:InspectCommand" ,
101- " run = bonobo.commands.run:RunCommand" ,
102- " version = bonobo.commands.version:VersionCommand" ,
80+ ' bonobo.commands' : [
81+ ' convert = bonobo.commands.convert:ConvertCommand' ,
82+ ' download = bonobo.commands.download:DownloadCommand' ,
83+ ' examples = bonobo.commands.examples:ExamplesCommand' ,
84+ ' init = bonobo.commands.init:InitCommand' ,
85+ ' inspect = bonobo.commands.inspect:InspectCommand' ,
86+ ' run = bonobo.commands.run:RunCommand' ,
87+ ' version = bonobo.commands.version:VersionCommand'
10388 ],
104- " console_scripts" : [" bonobo = bonobo.commands:entrypoint" ],
89+ ' console_scripts' : [' bonobo = bonobo.commands:entrypoint' ]
10590 },
106- url = "https://www.bonobo-project.org/" ,
107- download_url = "https://github.com/python-bonobo/bonobo/tarball/{version}" .format (version = version ),
91+ url = 'https://www.bonobo-project.org/' ,
92+ download_url = 'https://github.com/python-bonobo/bonobo/tarball/{version}' .
93+ format (version = version ),
10894)
0 commit comments