setup: add packaging files
This commit is contained in:
parent
e5d1311872
commit
2eb84bd746
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[build-system]
|
||||
requires = ["setuptools >= 38.3.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
23
setup.cfg
Normal file
23
setup.cfg
Normal file
|
@ -0,0 +1,23 @@
|
|||
[metadata]
|
||||
name = scaruffi
|
||||
version = 0.0.1
|
||||
description = Get some data from scaruffi.com.
|
||||
long_description = file: README.md
|
||||
license = MIT
|
||||
author = dece
|
||||
author-email = shgck@pistache.land
|
||||
home-page = https://github.com/Dece/Scaruffi
|
||||
classifiers =
|
||||
Environment :: Console
|
||||
License :: OSI Approved :: MIT License
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.7
|
||||
|
||||
[options]
|
||||
packages = scaruffi
|
||||
python_requires = >= 3.7
|
||||
setup_requires = setuptools >= 38.3.0
|
||||
|
||||
[options.entry_points]
|
||||
console_scripts =
|
||||
scaruffi = scaruffi.__main__:main
|
Loading…
Reference in a new issue