-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
64 lines (56 loc) · 1.62 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools_scm[toml]>=6.2"]
[project]
authors = [{name = "Michael Hoffman", email = "michael.hoffman@utoronto.ca"}]
classifiers = [
"Natural Language :: English",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
]
dependencies = [
"autolog>=0.2.0",
"colorbrewer>=0.2.0",
"drmaa>=0.4a3",
"genomedata>=1.7",
"numpy",
"optbuild>=0.2.0",
"optplus>=0.2.0",
"path.py>=11",
"six",
"tables>2.0.4",
"textinput>=0.2.0",
]
description = "Segway is a tool for easy pattern discovery and identification in functional genomics data."
dynamic = ["version"]
name = "segway"
readme = "README.md"
requires-python = ">=3.9"
[project.license]
text = "GPL-2.0-only"
[project.scripts]
segway = "segway.run:main"
segway-layer = "segway.layer:main"
segway-task = "segway.task:main"
segway-winner = "segway.winner:main"
[project.urls]
"Bug Tracker" = "https://github.com/hoffmangroup/segway/issues"
"Download" = "https://pypi.python.org/pypi/segway"
"Homepage" = "https://hoffmanlab.org/proj/segway"
[tool.setuptools]
# Override setuptools autodiscovery algorithm
packages = ["segway", "segway.data", "segway.cluster"]
# Enable version inference from scm
[tool.setuptools_scm]
[tool.mypy]
ignore_missing_imports = true
[tool.isort]
combine_star = true
float_to_top = true
force_single_line = false
profile = "google"
py_version = 3