From bc4158fc102f0b062b9253686bebc25ac9356dd6 Mon Sep 17 00:00:00 2001 From: Mikucat Date: Tue, 16 Jan 2024 11:39:57 +0800 Subject: [PATCH] chore: follow PEP 8 package name rule --- bindings/Python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/Python/setup.py b/bindings/Python/setup.py index c333168..e43de32 100644 --- a/bindings/Python/setup.py +++ b/bindings/Python/setup.py @@ -1,6 +1,6 @@ # coding=utf-8 from distutils.core import setup, Extension -setup(name='_judger', +setup(name='judger', version='2.1', - packages=["_judger"]) \ No newline at end of file + packages=["_judger"])