init
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*.egg*
|
||||
__pycache__
|
||||
5
backup_box/__main__.py
Normal file
5
backup_box/__main__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
def main():
|
||||
print("Hello World")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
19
pyproject.toml
Normal file
19
pyproject.toml
Normal file
@@ -0,0 +1,19 @@
|
||||
[project]
|
||||
name = "backup_box"
|
||||
version = "0.0.1"
|
||||
license = "MIT"
|
||||
authors = [{ name="Dreagonmon" }]
|
||||
dependencies = []
|
||||
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools >= 40.9.0",
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
# All the following settings are optional:
|
||||
where = ["."] # ["."] by default
|
||||
include = ["backup_box"] # ["*"] by default
|
||||
exclude = ["backup_box/tests*"] # empty by default
|
||||
namespaces = true # true by default
|
||||
Reference in New Issue
Block a user