Skip to content

Commit bee8c9b

Browse files
authored
Merge pull request #2 from Geovation/1-set-up-project-properly
Adding toml and basic project structure
2 parents dfb0eaa + 016c922 commit bee8c9b

4 files changed

Lines changed: 12 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "catalyst_ons_geography"
7+
version = "0.2.0"
8+
dependencies = [
9+
"duckdb",
10+
'importlib-metadata; python_version<"3.10"',
11+
]

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/catalyst_ons_geography/__init__.py

Whitespace-only changes.

ons_geography.py renamed to src/catalyst_ons_geography/catalyst_ons_geography.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import duckdb
66

7+
78
def get_ons_from_postcodes(postcodes):
89
'''Get the ONS Geography data from the postcodes'''
910

0 commit comments

Comments
 (0)