Giò Diani 2024-10-25 15:32:55 +02:00
parent e8830c32e6
commit 7b979997ad
1352 changed files with 2401 additions and 5 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# GitHub syntax highlighting
pixi.lock linguist-language=YAML linguist-generated=true

43
.gitignore vendored
View File

@ -1 +1,42 @@
.idea/
# pixi environments
.pixi
*.egg-info
# Binaries
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.war
*.ear
*.sar
*.class
# IntelliJ project files
*.iml
*.iws
*.ipr
.idea/
# eclipse project file
.settings/
.classpath
.project
# NetBeans specific
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
# OS
.DS_Store

2331
pixi.lock generated Normal file

File diff suppressed because it is too large Load Diff

26
pyproject.toml Normal file
View File

@ -0,0 +1,26 @@
[project]
authors = [{name = "Giò Diani", email = "mail@gionathandiani.name"}]
dependencies = []
description = "Add a short description here"
name = "consultancy_2"
requires-python = ">= 3.11"
version = "0.1.0"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
[tool.pixi.pypi-dependencies]
consultancy_2 = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
numpy = ">=2.1.2,<3"
pandas = ">=2.2.3,<3"
plotly = ">=5.24.1,<6"
duckdb = ">=1.1.2,<2"

View File

@ -1,4 +0,0 @@
mysqlclient~=2.2.4
pandas~=2.2.3
plotly~=5.24.1
numpy~=2.1.1

View File

Some files were not shown because too many files have changed in this diff Show More