forked from psf/cachecontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.38 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
43
44
45
46
47
48
import setuptools
long_description = open('README.rst').read()
VERSION = '0.11.7'
setup_params = dict(
name='CacheControl',
version=VERSION,
author='Eric Larson',
author_email='[email protected]',
url='https://github.com/ionrock/cachecontrol',
keywords='requests http caching web',
packages=setuptools.find_packages(),
package_data={'': ['LICENSE.txt']},
package_dir={'cachecontrol': 'cachecontrol'},
include_package_data=True,
description='httplib2 caching for requests',
long_description=long_description,
install_requires=[
'requests',
],
extras_require={
'filecache': ['lockfile>=0.9'],
},
entry_points={
'console_scripts': [
'doesitcache = cachecontrol._cmd:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
],
)
if __name__ == '__main__':
setuptools.setup(**setup_params)