Skip to content

Commit

Permalink
Move from setup.py to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mmouchous-ledger committed Oct 17, 2022
1 parent b5750fc commit bd013ff
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 11 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "pystages"
version = "1.1.0"
authors = [
{ name="Olivier Hérivaux", email="olivier.heriveaux@ledger.fr" },
{ name="Michaël Mouchous", email="michael.mouchous@ledger.fr" },
]
description = "Motorized stage control library for scientific applications"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"pyserial",
"pyusb",
"numpy"
]

[project.urls]
"Homepage" = "https://github.com/Ledger-Donjon/pystages"
"Bug Tracker" = "https://github.com/Ledger-Donjon/pystages/issues"
"Documentation" = "https://pystages.readthedocs.io/en/latest"
11 changes: 0 additions & 11 deletions setup.py

This file was deleted.

0 comments on commit bd013ff

Please sign in to comment.