-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (32 loc) · 1.12 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
""" Copyright (c) Trainline Limited, 2017. All rights reserved. See LICENSE.txt in the project root for license information. """
import sys
from setuptools import find_packages, setup
from codecs import open
from os.path import abspath, dirname, join
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest-runner', 'nose'] if needs_pytest else []
setup(name='envmgr-lib',
version='0.3.0',
description="Tools for the EM API",
url="https://github.com/trainline/envmgr-lib",
author="Trainline Engineering",
author_email="[email protected]",
install_requires = [
'requests',
'simplejson',
'repoze.lru',
'python-dateutil',
'environment_manager==0.2.5'
],
setup_requires = pytest_runner,
tests_require = [
'pytest',
'mock',
'nose',
'nose-parameterized',
'responses'
],
license='Apache 2.0',
package_data={'': ['LICENSE.txt']},
packages=['envmgr'],
zip_safe=True)