Skip to content

Commit

Permalink
Add pyproject.toml for Poetry configuration and remove setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abearab committed Jan 30, 2025
1 parent 9a1b386 commit db55f42
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 41 deletions.
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[tool.poetry]
name = "ScreenPro2"
version = "0.5.0"
description = "Flexible analysis of high-content CRISPR screening"
authors = [
"Abe Arab <[email protected]>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ArcInstitute/ScreenPro2"
repository = "https://github.com/ArcInstitute/ScreenPro2"
keywords = ["CRISPR", "screening", "bioinformatics"]
packages = [
{ include = "screenpro" },
{ include = "pyproject.toml" },
]

[tool.poetry.dependencies]
python = ">=3.9"

[tool.poetry.scripts]
screenpro = "screenpro.main:main"

[tool.poetry.group.test.dependencies]
pytest = "*"
tomli = "*"

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
5 changes: 0 additions & 5 deletions screenpro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,3 @@
from .ngs import GuideCounter
from .assays import PooledScreens, GImaps
from .dashboard import DrugScreenDashboard


__version__ = "0.4.18"
__author__ = "Abe Arab"
__email__ = '[email protected]' # "[email protected]"
36 changes: 0 additions & 36 deletions setup.py

This file was deleted.

0 comments on commit db55f42

Please sign in to comment.