-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from miraisolutions/issue-25/switch-to-pyproje…
…ct-toml Initial commit for switching to pyproject.toml
- Loading branch information
Showing
6 changed files
with
64 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "secretsanta" | ||
description = "Secret Santa randomizer" | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Mirai Solutions", email = "[email protected]" }, | ||
] | ||
urls = { Homepage = "https://github.com/miraisolutions/secretsanta" } | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: POSIX :: Linux', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Topic :: Games/Entertainment', | ||
] | ||
license = { text = "MIT" } | ||
version = "0.1.dev1" | ||
keywords = ["secret", "santa"] | ||
|
||
[project.scripts] | ||
santa = "secretsanta.cli.cli:santa" | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["secretsanta"] | ||
|
||
[tool.setuptools_scm] | ||
|
||
[tool.coverage.html] | ||
# Directory where coverage report should be written. | ||
directory = "coverage" | ||
|
||
[tool.coverage.report] | ||
# Show which lines were missed in summary report. | ||
show_missing = true | ||
|
||
[tool.coverage.run] | ||
# Measure branch coverage in addition to statement coverage. | ||
branch = true | ||
# The source directory to measure. This is already in 'tox.ini'. | ||
#source = secretsanta | ||
|
||
[tool.pytest.ini_options] | ||
norecursedirs = [ | ||
"bin", | ||
"include", | ||
"lib", | ||
"lib64", | ||
"share", | ||
".tox", | ||
".git", | ||
"docs" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
__version__ = '0.1.0' | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters