This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fastly-py/setup.py
2014-09-24 13:35:02 -04:00

25 lines
655 B
Python

from setuptools import setup
setup(
name="fastly",
version="0.0.3",
author="Fastly",
author_email="support@fastly.com",
description="Fastly python API",
keywords="fastly api",
url="https://github.com/fastly/fastly-py",
packages=['fastly'],
long_description=open('README.md').read(),
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Topic :: Utilities"
],
scripts=[
"bin/purge_service",
"bin/purge_key",
"bin/purge_url"
]
)