-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.29 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup
__version__ = None
with open('ppcswift/_version.py', 'r') as f:
exec(f.read())
setup(
name='pypicloud-swift',
version=__version__,
description='OpenStack Swift storage for PyPI Cloud',
long_description=open("README.rst").read(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Environment :: OpenStack',
'Environment :: Plugins',
'Environment :: Web Environment',
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Systems Administration',
],
license='MIT',
author='Andrey Ulagashev',
author_email='ulagashev.andrey@gmail.com',
url='https://github.com/HDScorpio/pypicloud-swift',
keywords='pypi package openstack swift object storage',
platforms='any',
install_requires=[
'pypicloud >= 1.0.14',
'python-swiftclient'
],
python_requires='>=3.5',
packages=['ppcswift']
)