Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.

Commit ee71176

Browse files
committed
Moving to pyproject.toml using pip-tools #issue 27
1 parent e57d2c3 commit ee71176

File tree

4 files changed

+35
-61
lines changed

4 files changed

+35
-61
lines changed

pyproject.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "project_name"
7+
version = "0.1.0"
8+
description = "project_description"
9+
readme = "README.md"
10+
requires-python = ">=3.6"
11+
authors = [
12+
{ name = "author_name", email = "[email protected]" }
13+
]
14+
homepage = "https://github.com/author_name/project_urlname/"
15+
16+
# Dependências de produção (adicione suas dependências aqui quando necessário)
17+
dependencies = []
18+
19+
# Scripts de entrada
20+
[project.scripts]
21+
project_name = "project_name.__main__:main"
22+
23+
# Dependências opcionais para desenvolvimento e testes
24+
[project.optional-dependencies]
25+
test = [
26+
"pip-tools",
27+
"pytest",
28+
"coverage",
29+
"flake8",
30+
"black",
31+
"isort",
32+
"pytest-cov",
33+
"mypy",
34+
"gitchangelog",
35+
]

requirements-test.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)