add config files
This commit is contained in:
parent
486dead4be
commit
3b0938293b
5 changed files with 21 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
# test-pip
|
||||
|
||||
Some test with python packaging.
|
||||
Some test with python packaging.
|
||||
|
||||
Inspired by videos form [mCoding](https://www.youtube.com/channel/UCaiL2GDNpLYH6Wokkk1VNcg)
|
||||
|
|
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[build-system]
|
||||
requires = ["setuptools>=42.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
11
setup.cfg
Normal file
11
setup.cfg
Normal file
|
@ -0,0 +1,11 @@
|
|||
[metadata]
|
||||
name = test-pip
|
||||
description = A test of python packaging
|
||||
author = Histausse <histausse@protonmail.com>
|
||||
platforms = unix, linux, osx, cygwin, win32
|
||||
|
||||
[options]
|
||||
packages = test-pip
|
||||
python_requires = >=3.6
|
||||
package_dir = =src
|
||||
zip_safe = no
|
4
setup.py
Normal file
4
setup.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
from setuptools import setup
|
||||
|
||||
if __name__ == "__main__":
|
||||
setup()
|
Loading…
Reference in a new issue