setup: add packaging files

This commit is contained in:
dece 2020-11-05 17:58:40 +01:00
parent e5d1311872
commit 2eb84bd746
3 changed files with 28 additions and 0 deletions

3
pyproject.toml Normal file
View file

@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools >= 38.3.0", "wheel"]
build-backend = "setuptools.build_meta"

23
setup.cfg Normal file
View 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

2
setup.py Normal file
View file

@ -0,0 +1,2 @@
from setuptools import setup
setup()