blob: 8d1886349272084faf95fb44ad9a4d2d74aa9158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import setuptools
setup_params = dict(
name='HTTPCache',
version='0.5',
author="Eric Larson",
author_email="eric@ionrock.org",
url="https://bitbucket.org/elarson/httpcache",
packages=setuptools.find_packages(),
tests_requires=[
'py.test',
'cherrypy',
],
)
if __name__ == '__main__':
setuptools.setup(**setup_params)
|