Skip to content

Commit

Permalink
Switching to modern build system
Browse files Browse the repository at this point in the history
  • Loading branch information
dxm447 committed Nov 28, 2023
1 parent cc8e4a7 commit 81c3b0b
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 113 deletions.
42 changes: 0 additions & 42 deletions citesoft/meta.yaml

This file was deleted.

64 changes: 43 additions & 21 deletions pyproject.toml
@@ -1,27 +1,49 @@
[tool.poetry]
[project]
name = "STEMTool"
version = "0.535"
version = "2023.11.28"
description = "A single package for analyzing atomic resolution STEM, 4D-STEM and STEM-EELS datasets, along with basic STEM simulation functionality"
authors = ["Debangshu Mukherjee <mukherjeed@ornl.gov>"]
license = "MIT"
authors = [
{name = "Debangshu Mukherjee",
email = "mukherjeed@ornl.gov"}
]
license = {file = "LICENSE"}
maintainers = [
{name = "Debangshu Mukherjee",
email = "mukherjeed@ornl.gov"}
]
keywords = [
"elecron microscopy",
"TEM",
"STEM",
"4D-STEM",
"STEM-EELS",
"Microscope Simulation"
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pywavelets >= 0.5.2",
"numpy >= 1.13.0",
"scipy >= 1.0.0",
"matplotlib >= 2.2.0",
"pillow >= 10.1.0",
"scikit-image >= 0.13.0",
"matplotlib-scalebar >= 0.5.0",
"ase >= 3.16.0",
"h5py >= 3.7.0",
"dask >= 2021.9.0",
]

[tool.poetry.dependencies]
python = "^3.6"
pyfftw = "^0.10.3"
scipy = "^1.0.0"
numpy = "^1.13.0"
pywavelets = "^0.5.2"
matplotlib = "^2.2.0"
pillow = "^8.3.2"
numba = "^0.45.0"
scikit-image = "^0.13.0"
matplotlib-scalebar = "^0.5.0"
ase = "^3.16.0"
h5py = "^2.7.0"
dask = "^2021.9.0"
[project.urls]
Homepage = "https://github.com/pycroscopy/stemtool"
Issues = "https://github.com/pycroscopy/stemtool/issues"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
50 changes: 0 additions & 50 deletions setup.py

This file was deleted.

0 comments on commit 81c3b0b

Please sign in to comment.