forked from fastly/fastly-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 857 Bytes
/
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
from setuptools import setup
exec(open('fastly/_version.py').read())
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="fastly",
version=__version__,
author="Fastly",
author_email="support@fastly.com",
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Topic :: Utilities"
],
description="Fastly python API",
keywords="fastly api",
long_description=long_description,
long_description_content_type="text/markdown",
packages=['fastly'],
install_requires=[
'six',
],
scripts=[
"bin/purge_service",
"bin/purge_key",
"bin/purge_url"
],
url="https://github.com/fastly/fastly-py",
)