Skip to content

Commit

Permalink
adding pyproject.toml and removing setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
shachafl committed Dec 14, 2024
1 parent fec4816 commit c96c3be
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 44 deletions.
48 changes: 48 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
[build-system]
requires = ["setuptools >= 66.1.0", "versioneer"]
build-backend = "setuptools.build_meta"

[project]
name = "starfish"
dynamic = ["version", "dependencies", "optional-dependencies"]
requires-python = ">= 3.9, <3.13"
authors = [
{name = "Deep Ganguli", email = "[email protected]"}
]
maintainers = [
{name = "Lior Shachaf", email = "[email protected]"}
]
description = "Pipelines and pipeline components for the analysis of image-based transcriptomics data"
readme = "README.rst"
keywords = ["single-cell", "image-based", "transcriptomics"]
classifiers = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]

[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "starfish/core/_version.py"
versionfile_build = "starfish/core/_version.py"
parentdir_prefix = "starfish-"
tag_prefix = ""

[project.urls]
Homepage = "https://spacetx-starfish.readthedocs.io/en/latest/"
Documentation = "https://spacetx-starfish.readthedocs.io/en/latest/"
Repository = "https://github.com/spacetx/starfish"
"Bug Tracker" = "https://github.com/spacetx/starfish/issues"

[project.scripts]
starfish = "starfish.core.starfish:starfish"
38 changes: 0 additions & 38 deletions setup.cfg

This file was deleted.

6 changes: 0 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,7 @@
extras_require={
'napari': [f"napari[all]>={napari_version}"],
},
entry_points={
'console_scripts': [
"starfish=starfish.core.starfish:starfish",
]
},
include_package_data=True,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires='>=3.9, <3.13'
)

0 comments on commit c96c3be

Please sign in to comment.