chore: use pyproject.toml

This commit is contained in:
Mikucat 2024-01-16 11:42:04 +08:00
parent bc4158fc10
commit 4fcc6e5be2
No known key found for this signature in database
GPG Key ID: CE6B09A6F462E04D
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"])