forked from Nike-Inc/signal_analog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (67 loc) · 1.97 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.md') as history_file:
history = history_file.read()
requirements = [
# py2/3 compat dependencies
'enum34',
'six',
# all other modules
'requests',
'click',
'email_validator',
'pyyaml'
]
setup_requirements = [
'bumpversion',
'pytest-runner'
]
test_requirements = [
'betamax',
'betamax_serializers',
'coverage',
'hypothesis',
'pytest',
'pytest-html',
'pytest-xdist',
'requests-mock',
'tox'
]
setup(
name='signal_analog',
version='2.0.0',
description='A troposphere-like library for managing SignalFx'
+ 'Charts, Dashboards, and Detectors.',
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
author="Fernando Freire",
author_email='[email protected]',
url='https://github.com/Nike-inc/signal_analog',
packages=find_packages(include=['signal_analog']),
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords='signal_analog signalfx dashboards charts detectors monitoring '
+ 'signalflow',
license='BSD 3-Clause License',
classifiers=[
"Programming Language :: Python :: 2",
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'
],
test_suite='tests',
tests_require=test_requirements,
setup_requires=setup_requirements,
)