-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathProjectfile
More file actions
27 lines (22 loc) · 733 Bytes
/
Copy pathProjectfile
File metadata and controls
27 lines (22 loc) · 733 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
27
# bonobo-sqlalchemy (see github.com/python-bonobo/bonobo-sqlalchemy)
from medikit import require
pytest = require('pytest')
python = require('python')
yapf = require('yapf')
python.setup(
name='bonobo_sqlalchemy',
python_requires='>=3.5',
description='Bonobo SQLAlchemy Extension',
license='Apache License, Version 2.0',
url='https://www.bonobo-project.org/with/sqlalchemy',
download_url='https://github.com/python-bonobo/bonobo-sqlalchemy/tarball/{version}',
author='Romain Dorgueil',
author_email='romain@dorgueil.net',
)
bonobo_version = '~= 0.6.0'
python.add_requirements(
'bonobo ' + bonobo_version,
'SQLAlchemy ~=1.2',
dev=['bonobo[dev] ' + bonobo_version],
)
# vim: ft=python: