-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 846 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup
from setuptools import find_packages
setup(
name='velocity',
version='0.1.0',
url='https://github.com/oldarmyc/velocity.git',
license='BSD',
author='Dave Kludt',
author_email='oldarmyc@gmail.com',
description='Library to interact with swift containers',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'asyncio;python_version<"3.4"',
'aiohttp',
'aiofiles',
'requests'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)