You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/06/28 16:24:23 UTC

[skywalking-python] branch chore/rename created (now 537bb97)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch chore/rename
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git.


      at 537bb97  Rename project name to apache-skywalking

This branch includes the following new commits:

     new 537bb97  Rename project name to apache-skywalking

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-python] 01/01: Rename project name to apache-skywalking

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch chore/rename
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git

commit 537bb97ab67a3313b80a794f317b8b991241c1f1
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Mon Jun 29 00:24:08 2020 +0800

    Rename project name to apache-skywalking
---
 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,