Skip to content

Commit

Permalink
update setup.py to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Oct 26, 2024
1 parent ff3fd35 commit 5a58f88
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 39 deletions.
37 changes: 37 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[tool.bumpversion]
current_version = "0.0.8"
commit = "true"
tag = "true"
tag_name = "v{new_version}"

[project]
name = "delft"
version = "0.3.4"
description = "a Deep Learning Framework for Text"
readme = "Readme.md"
readme-content-type = "text/markdown"
authors = [
{ name = "Patrice Lopez", email = "patrice.lopez@science-miner.com" }
]
maintainers = [
{ name = "Patrice Lopez", email = "patrice.lopez@science-miner.com" },
{ name = "Luca Foppiano", email = "lucanoro@duck.com" }
]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = []

[tool.setuptools.packages.find]
exclude = ["test", "*.test", "*.test.*"]
39 changes: 0 additions & 39 deletions setup.py

This file was deleted.

0 comments on commit 5a58f88

Please sign in to comment.