Compare commits

..

2 Commits

Author SHA1 Message Date
b7134dbc0f Move from npm to yarn 2021-01-24 14:12:26 +01:00
74b8a6b411 Add setup.py 2021-01-24 13:56:53 +01:00
4 changed files with 1820 additions and 2090 deletions

2089
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -29,7 +29,7 @@
"dependencies": {
"bootstrap": "^4.4.1",
"datatables.net-bs4": "^1.10.20",
"jquery": "^3.5.0",
"jquery": "^3.4.1",
"leaflet": "^1.6.0",
"popper.js": "^1.16.1"
}

18
setup.py Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="wetter",
version="0.0.1",
author="clerie",
author_email="hallo@clerie.de",
description="Wetter",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.clerie.de/clerie/wetter",
packages=setuptools.find_packages(),
)

1801
yarn.lock Normal file

File diff suppressed because it is too large Load Diff