Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
35 changes: 35 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "numpyencoder"
version = "0.3.2"
description = "Python JSON encoder for handling Numpy data types."
readme = { file = "README.md", content-type = "text/markdown" }

requires-python = ">=3.6"
license = "MIT"
license-files = ["LICENSE"]

authors = [
{ name = "Hunter M. Allen", email = "allenhm@gmail.com" },
]

keywords = ["numpy", "json", "encoder"]

classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]

dependencies = [
"numpy>=1.14.3",
"packaging>=20.0",
]

[project.urls]
Homepage = "https://github.com/hmallen/numpyencoder"

[tool.setuptools.packages.find]
include = ["numpyencoder*"]
28 changes: 0 additions & 28 deletions setup.py

This file was deleted.