/ pyproject.toml
pyproject.toml
 1  [tool.poetry]
 2  name = "ifpd"
 3  version = "2.1.1.post2"
 4  description = "An iFISH probe design pipeline, with web interface included."
 5  authors = ["Gabriele Girelli <gigi.ga90@gmail.com>"]
 6  license = "MIT"
 7  readme = "README.md"
 8  homepage = "https://github.com/ggirelli/iFISH-Probe-Design"
 9  repository = "https://github.com/ggirelli/iFISH-Probe-Design"
10  keywords = ["biology", "cell", "DNA", "RNA", "FISH", "fluorescence", "hybridization"]
11  classifiers = [
12      "Development Status :: 5 - Production/Stable",
13      "Intended Audience :: Science/Research",
14      "Topic :: Scientific/Engineering :: Bio-Informatics",
15  	"License :: OSI Approved :: MIT License",
16      "Operating System :: Unix",
17      "Operating System :: POSIX :: Linux",
18  	"Programming Language :: Python :: 3.7",
19  	"Programming Language :: Python :: 3.8",
20  	"Programming Language :: Python :: 3.9",
21  ]
22  include = [
23  	"CHANGELOG.md",
24  	"LICENSE",
25  	"ifpd/interface/css/*",
26  	"ifpd/interface/fonts/*",
27  	"ifpd/interface/images/*",
28  	"ifpd/interface/js/*",
29  	"ifpd/interface/views/*",
30  	"ifpd/sections/probe_design/css/*",
31  	"ifpd/sections/probe_design/views/*"
32  ]
33  
34  [tool.poetry.dependencies]
35  python = "^3.7.1"
36  bottle = "^0.12.19"
37  joblib = "^1.0.1"
38  matplotlib = "^3.3.4"
39  numpy = "^1.20.1"
40  pandas = "^1.2.2"
41  pytest = "^6.2.2"
42  rich = ">=9.10,<11.0"
43  scipy = "^1.6.0"
44  Paste = "^3.5.0"
45  
46  [build-system]
47  requires = ["poetry>=0.12"]
48  build-backend = "poetry.masonry.api"
49  
50  [tool.poetry.scripts]
51  "ifpd" = "ifpd.scripts.ifpd:main"