-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
43 lines (36 loc) · 1.3 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
#!/usr/bin/env python
# Copyright (C) 2013-2014 SignalFuse, Inc. All rights reserved.
# Copyright (C) 2015-2019 SignalFx, Inc. All rights reserved.
from setuptools import setup, find_packages
with open('signalfx/version.py') as f:
exec(f.read())
with open('README.rst') as readme:
long_description = readme.read()
test_requirements = ['httmock']
with open('requirements.txt') as f:
requirements = [line.strip() for line in f.readlines()]
setup(
name=name, # noqa
version=version, # noqa
author='SignalFx, Inc',
author_email='[email protected]',
description='SignalFx Python Library',
license='Apache Software License v2',
long_description=long_description,
zip_safe=True,
packages=find_packages(),
install_requires=requirements,
tests_require=test_requirements,
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
url='https://github.com/signalfx/signalfx-python',
)