-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (30 loc) · 1.09 KB
/
setup.py
File metadata and controls
executable file
·32 lines (30 loc) · 1.09 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from condecache import __version__
setup(
name='condecache',
version=__version__,
author='Conde Nast Digital UK',
author_email='condenet.technical@condenast.co.uk',
description="caching framework to reduce boilerplate",
packages=find_packages(),
install_requires=[],
tests_require=['mock'],
url="https://github.com/cnduk/condecache",
download_url="https://github.com/cnduk/condecache/tarball/v{}".format(__version__),
keywords=[],
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)