Skip to content

Instantly share code, notes, and snippets.

@dshemetov
Created July 25, 2023 07:49
Show Gist options
  • Save dshemetov/30001cf62798c3b749cbb26bd977946b to your computer and use it in GitHub Desktop.
Save dshemetov/30001cf62798c3b749cbb26bd977946b to your computer and use it in GitHub Desktop.
pyproject.toml
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "package_name"
version = "0.1.0"
description = "Useful utilities"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{email = ""},
{name = ""}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"numpy"
]
[project.urls]
repository = ""
[tool.setuptools]
# To specify specific folders or modules to install
py-modules = ["package_folder"]
[tool.black]
target-version = ['py310']
include = '\.py'
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules --doctest-continue-on-failure"
[tool.pylint.'FORMAT']
max-line-length=100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment