Skip to content

Commit 5a6e165

Browse files
committed
Rename package to stan; update README
1 parent 1986bd1 commit 5a6e165

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<img src="https://disznc.s3.amazonaws.com/Python-1-2017-06-29-at-22.34.00.png"/>
33
</div>
44

5-
# Instana
5+
# Stan
66

7-
The Instana package provides Python metrics and traces (request, queue & cross-host) for [Instana](https://www.instana.com/).
7+
The stan package provides Python metrics and traces (request, queue & cross-host) for [Instana](https://www.instana.com/).
88

99
## Note
1010

@@ -14,11 +14,11 @@ Any and all feedback is welcome. Happy Python visibility.
1414

1515
## Installation
1616

17-
$ pip install instana
17+
$ pip install stan
1818

1919
## Usage
2020

21-
The instana package is a zero configuration tool that will automatically collect key metrics from your Python processes. Just install and go.
21+
The stan package is a zero configuration tool that will automatically collect key metrics from your Python processes. Just install and go.
2222

2323
## Tracing
2424

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[nosetests]
22
verbose=1
33
nocapture=1
4+
5+
[metadata]
6+
description-file = README.md

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from setuptools import setup, find_packages
22

3-
setup(name='instana',
3+
setup(name='stan',
44
version='0.0.1',
55
url='https://github.com/instana/python-sensor',
66
license='MIT',
77
author='Instana Inc.',
8-
author_email='pavlo.baron@instana.com',
8+
author_email='peter.lombardo@instana.com',
99
description='Metrics sensor and trace collector for Instana',
1010
packages=find_packages(exclude=['tests', 'examples']),
1111
long_description=open('README.md').read(),
@@ -15,4 +15,5 @@
1515
'opentracing>=1.2.1,<1.3',
1616
'basictracer>=2.2.0',
1717
'psutil>=5.1.3'],
18-
test_suite='nose.collector')
18+
test_suite='nose.collector',
19+
keywords=['performance', 'opentracing', 'metrics', 'monitoring'])

0 commit comments

Comments
 (0)