Skip to content

Commit

Permalink
Added pyproject.toml and removed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasstolker committed Oct 7, 2024
1 parent b9de43c commit 74b02bb
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 35 deletions.
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "diskmap"
version = "0.2.0"
authors = [{name = "Tomas Stolker", email = "[email protected]"}]
description = "Scattered light mapping of protoplanetary disks"
readme = "README.rst"
requires-python = ">=3.9,<3.12"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
dynamic = ["dependencies"]

[project.urls]
Documentation = "https://diskmap.readthedocs.io"
Repository = "https://github.com/tomasstolker/diskmap"
Issues = "https://github.com/tomasstolker/diskmap/issues"

[tool.setuptools]
packages = ["diskmap"]

[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
35 changes: 0 additions & 35 deletions setup.py

This file was deleted.

0 comments on commit 74b02bb

Please sign in to comment.