forked from signalfx/signalfx-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (26 loc) · 848 Bytes
/
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
#!/usr/bin/env python
# Copyright (C) 2013-2015 SignalFuse, Inc.
# Copyright (C) 2015 SignalFx, Inc.
from setuptools import setup, find_packages
from signalfx.version import name, version
with open('README.md') as readme:
long_description = readme.read()
with open('requirements.txt') as f:
requirements = [line.strip() for line in f.readlines()]
setup(
name=name,
version=version,
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,
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
],
url='https://github.com/signalfx/signalfx-python',
)