purge-static/setup.py

52 lines
1.7 KiB
Python
Raw Normal View History

2018-12-03 18:42:49 -05:00
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
setup(
name='purge-static',
2021-06-13 18:53:07 -04:00
version='0.1.1',
2018-12-03 18:42:49 -05:00
packages=find_packages(),
entry_points={
'console_scripts': [
'purge-static = purge_static:main',
],
},
author='quantum',
author_email='quantum2048@gmail.com',
url='https://github.com/quantum5/purge-static',
description='Find changed static files, show their URLs, and optionally '
'purge them for you on your CDN.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
keywords='cloudflare cdn static cache purge',
install_requires=['requests', 'six'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
2021-06-13 18:53:07 -04:00
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
2018-12-03 18:42:49 -05:00
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
)