blob: 189ab27b4f4957d8282edb3bf9baec4b48751f64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/python
from setuptools import setup, find_packages
setup(
name='bn_tests',
version='0.0.1',
packages=find_packages(),
author='Kalpesh Pandya',
author_email='kapandya@redhat.com',
description='Bucket Notification compatibility tests',
license='MIT',
keywords='bn web testing',
install_requires=[
'boto >=2.0b4',
'boto3 >=1.0.0'
],
)
|