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
2013-06-05 17:28:19 -03:00

30 lines
880 B
Python

import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "fastly",
version = "0.0.2",
author = "Fastly?",
author_email="support@fastly.com",
description = ("Fastly python API"),
license = "dunno",
keywords = "fastly api",
url = "https://github.com/fastly/fastly-py",
packages=find_packages(),
long_description=read('README'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved??? :: BSD License???",
],
entry_points = {
'console_scripts': [
'purge_service = fastly.scripts.purge_service:purge_service',
'purge_key = fastly.scripts.purge_key:purge_key',
'purge_url = fastly.scripts.purge_url:purge_url',
]
},
)