setting up package

This commit is contained in:
Brennen Raimer
2022-04-19 16:25:03 -04:00
parent 07af281bdd
commit a6d883b797
4 changed files with 38 additions and 0 deletions

2
MANIFEST.in Normal file
View File

@@ -0,0 +1,2 @@
recursive-exclude *__pycache__
global-exclude *.py[cod]

3
pyproject.toml Normal file
View File

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

5
pytest.ini Normal file
View File

@@ -0,0 +1,5 @@
[pytest]
norecursedirs = .*
python_files = *_test.py
python_functions = *_test

28
setup.cfg Normal file
View File

@@ -0,0 +1,28 @@
[metadata]
name = openpyxl-utils
version = 0.1
author = Brennen Raimer
description = Utility module for styling your OpenPyXL spreadsheets.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENCE
platform = any
[options]
python_requires = >= 3.6
install_requires =
openpyxl >= 3.0
toolz
package_dir =
=src
packages = find:
[options.packages.find]
where = src
[options.extras_require]
tests =
pytest
pytest-runner