Merge pull request #80 from mikucat0309/pyproject

Use pyproject.toml in python binding
This commit is contained in:
virusdefender 2024-01-28 16:08:57 +08:00 committed by GitHub
commit f2b86ec9c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 13 additions and 6 deletions

3
bindings/Python/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
dist/
build/
*.egg-info/

View File

@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

View File

@ -0,0 +1,7 @@
[metadata]
name = judger
version = 2.2.0
description = python wrapper of libjudger
[options]
packages = find:

View File

@ -1,6 +0,0 @@
# coding=utf-8
from distutils.core import setup, Extension
setup(name='_judger',
version='2.1',
packages=["_judger"])