-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
28 lines (26 loc) · 781 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
from setuptools import setup, find_packages
version = '0.2.1'
setup(
name='s3werkzeugcache',
description=(
"S3 implementation of the werkzeug cache"),
version=version,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'boto3',
'cachelib',
],
author='Bogdan Kyryliuk',
author_email='b.kyryliuk@gmail.com',
url='https://github.com/bkyryliuk/s3werkzeugcache',
download_url=(
'https://github.com/bogdan-kyryliuk/s3cache/tarball/' + version),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)