Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
- `output` to `output-type` for CLI

### Fixed
- a bug with `--site-limit`. it now exports the number of sets requested by the
- a bug with `--site-limit`. it now exports the number of sets requested by the user

## 0.8.0

Expand Down
6 changes: 0 additions & 6 deletions backend/persister.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,9 @@
import csv
import io
import os
import shutil
from pprint import pprint
import json

import pandas as pd
import geopandas as gpd
import psycopg2
from shapely import Point

from backend import OutputFormat
from backend.logger import Loggable

Expand Down
1 change: 0 additions & 1 deletion backend/persisters/geoserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import time
from itertools import groupby
from typing import Type
import psycopg2
from shapely.geometry.multipoint import MultiPoint
from shapely.geometry.point import Point
from sqlalchemy.dialects.postgresql import JSONB, insert
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ pandas
psycopg2
pytest
pyyaml
sqlalchemy[mypy]
types-pyyaml
urllib3>=2.2.0,<3.0.0
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

# Read dependencies from requirements.txt
with open("requirements.txt", "r", encoding="utf-8") as req_file:
requirements = req_file.read().splitlines()

setup(
name="nmuwd",
version="0.9.1",
version="0.9.3",
author="Jake Ross",
description="New Mexico Water Data Integration Engine",
long_description=long_description,
Expand All @@ -31,7 +35,7 @@
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=["click", "httpx", "geopandas", "frost_sta_client"],
install_requires=requirements,
entry_points={
"console_scripts": [
"die = frontend.cli:cli",
Expand Down
Loading