- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·14 lines (12 loc) · 476 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·14 lines (12 loc) · 476 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding: utf-8
fromsetuptoolsimportsetup, find_packages
setup(
name='python_simple_swiftclient',
description='A simple Openstack Swift Client written in Python to manage swift objects using just python standard libraries.',
url='https://github.com/hcltech-ssw/python-simple-swiftclient',
version='0.0.3',
author='HCLTech-SSW Team',
author_email='hcl_ss_oss@hcl.com',
packages=find_packages(),
scripts=['bin/python-simple-swiftclient'],
)