-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (29 loc) · 912 Bytes
/
setup.py
File metadata and controls
39 lines (29 loc) · 912 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
28
29
30
31
32
33
34
35
36
37
38
39
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup
setup(
name='Flask-Imagine-RackspaceAdapter',
version='0.4',
description='Rackspace Files adapter for Flask-Imagine extension.',
url='https://github.com/FlaskGuys/Flask-Imagine-RackspaceAdapter',
author='Kronas',
author_email='kronas.sw@gmail.com',
license='MIT',
packages=['flask_imagine_rackspace_adapter'],
install_requires=[
'Flask-Imagine>=0.4',
'pyrax>=1.9.7',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)