Skip to content

Commit

Permalink
setup: Migrate from setup.py to pyproject.toml (#13)
Browse files Browse the repository at this point in the history
* setup: Migrate from setup.py to pyproject.toml

* Use Hatchling instead of setuptools

---------

Co-authored-by: Adam Amer <136176500+adamamer20@users.noreply.github.com>
  • Loading branch information
rht and adamamer20 authored Jun 27, 2024
1 parent 7410be9 commit 29010c1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "mesa_frames"
version = "0.1.0-alpha1"
description = "An extension to the Mesa framework which uses pandas/Polars DataFrames for enhanced performance"
authors = [
{ name = "Adam Amer" },
]
license = { text = "MIT" }

[tool.hatch.build.targets.wheel]
packages = ["mesa_frames"]
10 changes: 0 additions & 10 deletions setup.py

This file was deleted.

0 comments on commit 29010c1

Please sign in to comment.