-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 1.26 KB
/
setup.py
File metadata and controls
executable file
·25 lines (24 loc) · 1.26 KB
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
""" Copyright (c) Trainline Limited, 2016. All rights reserved. See LICENSE.txt in the project root for license information. """
from setuptools import setup
setup(name='environment_manager',
version='0.2.14',
description="A Client library for Environment Manager",
url="https://github.com/trainline/python-environment_manager",
author="Trainline Engineering",
author_email="platform.development@thetrainline.com",
install_requires=['requests', 'simplejson'],
license='Apache 2.0',
classifiers=['Development Status :: 3 - Alpha',
'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',
'Programming Language :: Python :: 3.5'],
keywords='environment_manager client library development',
package_data={'': ['LICENSE.txt']},
packages=['environment_manager'],
zip_safe=True)