-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (32 loc) · 1.1 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name='fleet',
version='0.1.3',
description='A python client for the fleet v1 API',
url='https://github.com/cnelson/python-fleet',
author='Chris Nelson',
author_email='[email protected]',
license='Apache License (2.0)',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Distributed Computing',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='coreos fleet v1 api client',
packages=find_packages(),
install_requires=[
'google-api-python-client>=1.4.2',
'paramiko>=1.15.1',
'mock',
'argparse'
],
test_suite='fleet.v1.tests'
)