Skip to content

Commit

Permalink
Moving to pyproject.toml using pip-tools #issue 27
Browse files Browse the repository at this point in the history
  • Loading branch information
vmagueta committed Oct 21, 2024
1 parent e57d2c3 commit ee71176
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 61 deletions.
35 changes: 35 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "project_name"
version = "0.1.0"
description = "project_description"
readme = "README.md"
requires-python = ">=3.6"
authors = [
{ name = "author_name", email = "[email protected]" }
]
homepage = "https://github.com/author_name/project_urlname/"

# Dependências de produção (adicione suas dependências aqui quando necessário)
dependencies = []

# Scripts de entrada
[project.scripts]
project_name = "project_name.__main__:main"

# Dependências opcionais para desenvolvimento e testes
[project.optional-dependencies]
test = [
"pip-tools",
"pytest",
"coverage",
"flake8",
"black",
"isort",
"pytest-cov",
"mypy",
"gitchangelog",
]
10 changes: 0 additions & 10 deletions requirements-test.txt

This file was deleted.

5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

46 changes: 0 additions & 46 deletions setup.py

This file was deleted.

0 comments on commit ee71176

Please sign in to comment.