-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (72 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
authors = ["Ismael Mendoza <[email protected]>"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
description = "Studies of relationship between dark matter halo present-day properties and their growth."
keywords = ["cosmology", "haloes", "dark-matter", "nbody", "simulation"]
license = "MIT"
name = "multicam"
packages = [{ include = "multicam" }]
readme = "README.md"
repository = "https://github.com/ismael-mendoza/multicam"
version = "0.0.1"
[tool.poetry.dependencies]
astropy = ">=4.3.1"
click = ">=8.0.0"
colossus = ">=1.2.19"
corner = ">=2.2.1"
findiff = ">=0.8.9"
lmfit = ">=1.0.3"
matplotlib = ">=3.5.1, !=3.6.0"
numpy = ">=1.22.0"
python = ">=3.9,<3.12"
scikit-learn = ">=1.0.0"
scipy = ">=1.7.3"
tqdm = ">=4.63.0"
h5py = "^3.9.0"
pandas = "^2.1.1"
tables = "^3.9.1"
[tool.poetry.dev-dependencies]
pminh = { git = "https://github.com/ismael-mendoza/minnow", branch = "master", markers = "sys_platform == 'linux'" }
Cython = ">=0.29.24"
black = ">=22.1.0"
flake8 = ">=4.0.1"
isort = ">=5.10.1"
jupyter-contrib-nbextensions = ">=0.5.1"
mistune = ">=2.0.3"
pre-commit = ">=2.16.0"
pytest = ">=6.2.5"
pytest-cov = ">=2.12.1"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ismael-mendoza/multicam/issues"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
src_paths = ["multicam", "bin", "tests"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses:DeprecationWarning",
]
minversion = "6.0"
testpaths = ['tests']
[tool.pylint."MESSAGES CONTROL"]
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifiers separated by comma (,) or put this
# option multiple times (only on the command line, not in the configuration
# file where it should appear only once). You can also use "--disable=all" to
# disable everything first and then reenable specific checks. For example, if
# you want to run only the similarities checker, you can use "--disable=all
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
disable = '''invalid-name,
unbalanced-tuple-unpacking,
'''