Skip to content

Commit f8a650e

Browse files
author
Jim Robinson
committed
Add requirements
1 parent 1d6dea4 commit f8a650e

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.egg-info
22
dist
3-
test-output.xml
3+
test-output.xml
4+
__pycache__

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools >= 40.9.0",
4+
"wheel",
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ zip_safe = False
2626
packages = find:
2727
include_package_data = True
2828
package_dir =
29-
=croudtech_bootstrap_app
29+
=./
3030

3131
[options.packages.find]
32-
where = croudtech_bootstrap_app
32+
where = ./
3333
exclude =
3434
tests
3535

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55

66
setup(name='croudtech-bootstrap',
77
version=os.getenv("SEMVER", os.getenv("GitVersion_FullSemVer", "dev")),
8+
install_requires=required
89
)
910

0 commit comments

Comments
 (0)