This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git
The following commit(s) were added to refs/heads/master by this push:
new 063cc0e Rename project name to apache-skywalking (#26)
063cc0e is described below
commit 063cc0e4d3c1eb68542b19b8b7593815f1532344
Author: kezhenxu94 <[email protected]>
AuthorDate: Mon Jun 29 07:51:33 2020 +0800
Rename project name to apache-skywalking (#26)
---
Makefile | 3 +++
setup.py | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 89d6cee..0ee496c 100644
--- a/Makefile
+++ b/Makefile
@@ -53,6 +53,9 @@ package: clean gen
upload-test: package
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
+upload: package
+ twine upload dist/*
+
clean:
rm -rf browser common language_agent management profile
service_mesh_probe
rm -rf skywalking_python.egg-info dist build
diff --git a/setup.py b/setup.py
index 49b29b9..39c495f 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
- name="skywalking",
+ name="apache-skywalking",
version="0.1.0",
description="Python Agent for Apache SkyWalking",
long_description=README,