Skip to content

Commit adb7c36

Browse files
Copilotpaulbkoch
andauthored
Migrate from obsolete setup.py to modern pyproject.toml packaging and remove obsolete CI/CD files (#9)
* Initial plan * Add pyproject.toml with modern Python packaging configuration Co-authored-by: paulbkoch <46825734+paulbkoch@users.noreply.github.com> * Remove obsolete setup.py file after successful pyproject.toml migration Co-authored-by: paulbkoch <46825734+paulbkoch@users.noreply.github.com> * Remove obsolete azure-pipelines.yml file Co-authored-by: paulbkoch <46825734+paulbkoch@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: paulbkoch <46825734+paulbkoch@users.noreply.github.com>
1 parent 0ce3b47 commit adb7c36

File tree

3 files changed

+30
-94
lines changed

3 files changed

+30
-94
lines changed

azure-pipelines.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[build-system]
2+
requires = ["setuptools>=45", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "slicer"
7+
version = "0.0.8"
8+
description = "A small package for big slicing."
9+
readme = "README.md"
10+
requires-python = ">=3.6"
11+
license = {text = "MIT"}
12+
authors = [
13+
{name = "InterpretML", email = "interpret@microsoft.com"}
14+
]
15+
classifiers = [
16+
"Programming Language :: Python :: 3.8",
17+
"Programming Language :: Python :: 3.9",
18+
"Programming Language :: Python :: 3.10",
19+
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
21+
"Development Status :: 3 - Alpha",
22+
"License :: OSI Approved :: MIT License",
23+
"Operating System :: OS Independent",
24+
]
25+
26+
[project.urls]
27+
Homepage = "https://github.com/interpretml/slicer"
28+
29+
[tool.setuptools]
30+
packages = ["slicer"]

setup.py

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)