-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
38 lines (32 loc) · 1.01 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
#!/usr/bin/env python
# Copyright (C) 2016-2018 SignalFx, Inc. All rights reserved.
from setuptools import setup, find_packages
with open('signalflowcli/version.py') as f:
exec(f.read())
with open('README.rst') as readme:
long_description = readme.read()
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,
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
],
entry_points={
'console_scripts': [
'signalflow=signalflowcli.prompt:main',
'csv-to-plot=signalflowcli.graph:main',
],
},
url='https://github.com/signalfx/signalflow-cli',
)