Skip to content

Commit 8094fea

Browse files
committed
python: change pip install name to google-cloud-sqlcommenter
Instead of google.cloud.sqlcommenter it'll now be google-cloud-sqlcommenter which seems like the more idiomatic naming convention for Python software packages, and moreover following google-cloud-storage et al.
1 parent 1e40123 commit 8094fea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

python/sqlcommenter-python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ Python modules for popular projects that add meta info to your SQL queries as co
66
* [SQLAlchemy](#sqlalchemy)
77
* [Psycopg2](#psycopg2)
88

9-
## Install
9+
## Local Install
1010

1111
```shell
12-
pipenv install sqlcommenter
12+
pip3 install --user .
1313
```
1414

1515
If you'd like to record some OpenCensus information as well, just install it:
1616

1717
```shell
18-
pipenv install opencensus
18+
pip3 install opencensus
1919
```
2020

2121
## Usage

python/sqlcommenter-python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from setuptools import find_packages, setup
1818

1919
setup(
20-
name='google.cloud.sqlcommenter',
20+
name='google-cloud-sqlcommenter',
2121
version='0.1',
2222
author='Google Developers',
2323
author_email='sqlcommenter@googlegroups.com',

0 commit comments

Comments
 (0)