-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·36 lines (32 loc) · 1.05 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
#!/usr/bin/env python
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
setup(
name='cfwatch',
version='0.2.0',
description="Automagically purges CloudFlare's cache when local files are updated.",
long_description=readme,
author='Quantum',
author_email='[email protected]',
url='https://github.com/quantum5/cfwatch',
keywords='cloudflare cdn cache purge',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
zip_safe=False,
py_modules=['cfwatch'],
entry_points={
'console_scripts': ['cfwatch = cfwatch:main'],
},
install_requires=['requests', 'watchdog'],
)