-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 815 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open("README.md").read()
except IOError:
long_description = ""
setup(
name="fastly-cli",
version="0.1.2",
description="Universal command line interface for Fastly CDN",
license="MIT",
url="https://github.com/mertsaygi/fastly-cli",
author="Mert Saygı",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
'Click',
'requests',
'fastly',
],
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
entry_points = {
'console_scripts': [
'fastly-cli = fastlycli.__main__:entry_point'
]
}
)