Skip to content

Commit

Permalink
Fix pip editable install deprecation warning by addint .toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
rubencart committed Oct 25, 2024
1 parent 11ba42f commit 02d5f4c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"

[project]
dynamic = ["version"]
classifiers = ["License :: OSI Approved :: MIT License", "Programming Language :: Python"]
license = {text = "MIT License"}
name = "sssl"
authors = [
{name = "Ruben Cartuyvels", email = "[email protected]"},
]
readme = {file = "README.txt", content-type = "text/markdown"}
requires-python = ">= 3.8"
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import pathlib

import setuptools

# Based on https://shunsvineyard.info/2019/12/23/using-git-submodule-and-develop-mode-to-manage-python-projects/
Expand All @@ -12,17 +13,14 @@
# This call to setup() does all the work
setuptools.setup(
name="sssl",
version="0.0.2",
version="0.0.3",
description="",
long_description=README,
long_description_content_type="text/markdown",
author="Ruben Cartuyvels",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
],
classifiers=["License :: OSI Approved :: MIT License", "Programming Language :: Python"],
packages=setuptools.find_packages(),
python_requires=">=3"
python_requires=">=3",
)

0 comments on commit 02d5f4c

Please sign in to comment.