forked from valerytschopp/python-radosgw-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 621 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 621 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
import os
import sys
# export DISTUTILS_DEBUG=1
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
setup(
name='radosgw-admin',
version='1.2.2',
author='Valery Tschopp',
author_email='valery.tschopp@gmail.com',
include_package_data=True,
requires=['boto'],
install_requires=['boto'],
packages=['radosgw'],
url='https://github.com/valerytschopp/python-radosgw-admin',
license='Apache2',
description='Ceph RADOS Gateway admin operations REST API',
long_description=open('README.rst').read(),
#test_suite='tests'
)