setting up package
This commit is contained in:
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
@@ -0,0 +1,2 @@
|
||||
recursive-exclude *__pycache__
|
||||
global-exclude *.py[cod]
|
||||
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[build-system]
|
||||
requires = ["setuptools", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
5
pytest.ini
Normal file
5
pytest.ini
Normal file
@@ -0,0 +1,5 @@
|
||||
[pytest]
|
||||
norecursedirs = .*
|
||||
python_files = *_test.py
|
||||
python_functions = *_test
|
||||
|
||||
28
setup.cfg
Normal file
28
setup.cfg
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user