Skip to content

Commit

Permalink
Add skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
glesica committed Apr 11, 2022
1 parent a2cbd84 commit f77b8e1
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
deeplabcut = ">=2.2.0.6"

[dev-packages]

[requires]
python_version = "3.10"
Empty file added diplomat/__init__.py
Empty file.
Empty file added diplomat/__main__.py
Empty file.
Empty file added diplomat/version.py
Empty file.
42 changes: 42 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"

[tool.flit.scripts]
bagel = "bagel.__main__:main"

[tool.flit.metadata]
module = "bagel"
author = "George Lesica"
author-email = "[email protected]"
maintainer = "George Lesica"
maintainer-email = "[email protected]"
home-page = "https://github.com/TravisWheelerLab/bagel"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
]
description-file = "README.md"

[tool.flit.sdist]
exclude = [
".DS_Store",
".github",
".gitignore",
".nextflow*",
"*.nf",
"benchmarks",
"bin",
"Dockerfile*",
"fixtures",
"secrets.sh",
"tool",
"tools",
"utils",
"work",
]
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pytest]
addopts = --doctest-modules

0 comments on commit f77b8e1

Please sign in to comment.