25 lines
655 B
Python
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"
|
|
]
|
|
)
|