project setup
This commit is contained in:
parent
2705b73ad7
commit
858ce77d82
|
@ -0,0 +1,5 @@
|
||||||
|
FROM python:3.10
|
||||||
|
COPY . /tmp/package
|
||||||
|
RUN pip install --no-cache-dir /tmp/package && \
|
||||||
|
rm -r /tmp/package
|
||||||
|
ENTRYPOINT ["dealwatch"]
|
|
@ -0,0 +1,5 @@
|
||||||
|
def main():
|
||||||
|
print("Hello world")
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
|
@ -0,0 +1,19 @@
|
||||||
|
[metadata]
|
||||||
|
name = dealwatch
|
||||||
|
author = badjware
|
||||||
|
author_email = marchambault.badjware.dev
|
||||||
|
platform = any
|
||||||
|
|
||||||
|
[options]
|
||||||
|
python_requires = >= 3.10.0
|
||||||
|
setup_requires =
|
||||||
|
setuptools
|
||||||
|
setuptools_scm
|
||||||
|
install_requires=
|
||||||
|
prometheus-client~=0.15.0
|
||||||
|
|
||||||
|
[options.entry_points]
|
||||||
|
console_scripts =
|
||||||
|
dealwatch = dealwatch.main:main
|
||||||
|
|
||||||
|
[tool.setuptools_scm]
|
Loading…
Reference in New Issue