Skip to content
Open
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 .github/workflows/python-multiple-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
59 changes: 59 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "scdata"
version = "1.3.2"
description = "A Python package for analysing environmental sensor data"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Fab Lab Barcelona", email = "info@fablabbcn.org" },
{ name = "Oscar Gonzalez", email = "oscar@fablabbcn.org"}
]

classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
]

# Based on the requirements list in the repo
dependencies = [
"branca~=0.4.0",
"Flask~=2.2.2",
"folium~=0.12.1",
"geopy~=1.21.0",
"Jinja2~=3.1.2",
"matplotlib",
"pandas~=2.2.2",
"pydantic",
"PyYAML~=6.0.1",
"requests",
"scipy",
"scikit-learn",
"seaborn",
"smartcitizen-connector",
"termcolor==1.1.0",
"tqdm~=4.50.2",
"timezonefinder~=6.1.9",
"urllib3",
"boto3",
"awswrangler"
]

[project.optional-dependencies]
dev = [
"pytest",
"flake8"
]

[project.urls]
Documentation = "https://docs.smartcitizen.me/"
Repository = "https://github.com/fablabbcn/smartcitizen-data"
8 changes: 7 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
[metadata]
description_file = README.md
name = scdata
version = 1.3.2
description = A Python package for analysing environmental sensor data.
author = Fab Lab Barcelona.
license = GPL-3.0
url = https://github.com/fablabbcn/smartcitizen-data
description_file = README.md