-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from shachafl/pypi_description
Missing pypi description fix by adding pyproject.toml Verified solution by uploading to testpypi after build: `python3 -m twine upload --repository testpypi dist/*` Will be resolved on master branch after new release is made and uploaded. Reference: https://packaging.python.org/en/latest/guides/modernize-setup-py-project/ https://packaging.python.org/en/latest/guides/writing-pyproject-toml/ https://packaging.python.org/en/latest/specifications/pyproject-toml/ https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
- Loading branch information
Showing
6 changed files
with
73 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "dganguli@chanzuckerberg.com"} | ||
] | ||
maintainers = [ | ||
{name = "Lior Shachaf", email = "shachaflior@gmail.com"} | ||
] | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters