-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (25 loc) · 960 Bytes
/
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
[project]
name = "life_expectancy"
version = "0.1.0"
description = "Let's see what life expects"
authors = [{name = "Ana Amorete"}]
dependencies = ["pandas>=2.1.1"]
[project.optional-dependencies]
dev = ["pytest", "pylint", "pytest-cov", "toml"]
# This bit is important. It tells Python how to build your project.
# In this case, we're using setuptools, which is usually already
# included in your Python installation.
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.pylint."messages control"]
disable = [
"missing-module-docstring", 'C0115', 'C0116',
'R0903', # Disable the "Too few public methods" warning
# Add any other checks you want to disable here
]
# This is also important. It tells setuptools which packages to include.
# If you don't add this, you won't be able to import your package,
# (`import my_cool_package`) even if you install it.
[tool.setuptools]
packages = ["life_expectancy"]