-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pip editable install deprecation warning by addint .toml file
- Loading branch information
Showing
2 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ | ||
|
@@ -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", | ||
) |