Skip to content

Commit db55f42

Browse files
committed
Add pyproject.toml for Poetry configuration and remove setup.py
1 parent 9a1b386 commit db55f42

File tree

3 files changed

+30
-41
lines changed

3 files changed

+30
-41
lines changed

pyproject.toml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[tool.poetry]
2+
name = "ScreenPro2"
3+
version = "0.5.0"
4+
description = "Flexible analysis of high-content CRISPR screening"
5+
authors = [
6+
"Abe Arab <[email protected]>"
7+
]
8+
license = "MIT"
9+
readme = "README.md"
10+
homepage = "https://github.com/ArcInstitute/ScreenPro2"
11+
repository = "https://github.com/ArcInstitute/ScreenPro2"
12+
keywords = ["CRISPR", "screening", "bioinformatics"]
13+
packages = [
14+
{ include = "screenpro" },
15+
{ include = "pyproject.toml" },
16+
]
17+
18+
[tool.poetry.dependencies]
19+
python = ">=3.9"
20+
21+
[tool.poetry.scripts]
22+
screenpro = "screenpro.main:main"
23+
24+
[tool.poetry.group.test.dependencies]
25+
pytest = "*"
26+
tomli = "*"
27+
28+
[build-system]
29+
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
30+
build-backend = "poetry_dynamic_versioning.backend"

screenpro/__init__.py

-5
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,3 @@
2929
from .ngs import GuideCounter
3030
from .assays import PooledScreens, GImaps
3131
from .dashboard import DrugScreenDashboard
32-
33-
34-
__version__ = "0.4.18"
35-
__author__ = "Abe Arab"
36-

setup.py

-36
This file was deleted.

0 commit comments

Comments
 (0)