forked from mwc/lab_pokemon
Compare commits
10 Commits
lab4-revam
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
89b0dfb1d3 | ||
|
|
62e3014969 | ||
|
|
4271908338 | ||
|
|
33170d7dd9 | ||
|
|
1e649dfc21 | ||
|
|
1fb67edff9 | ||
|
|
8368652725 | ||
|
|
ad567ef534 | ||
|
|
7cf6016a4c | ||
|
|
987703b6b4 |
@@ -1,5 +1,16 @@
|
|||||||
# Title. No more than 50 characters ----> |
|
|
||||||
|
|
||||||
# Leave a single blank line between the title and the body (excluding comments)
|
|
||||||
|
|
||||||
# Body. Write a description of what you've changed.
|
# -----------------------------------------------------------------
|
||||||
|
# Write your entire commit message above this line.
|
||||||
|
#
|
||||||
|
# The first line should be a quick description of what you changed.
|
||||||
|
# Then leave a blank line.
|
||||||
|
# Then, taking as many lines as you want, answer the questions below
|
||||||
|
# (you only need to answer these once).
|
||||||
|
#
|
||||||
|
# In the Unit 2 project, you will define some research questions and
|
||||||
|
# select your own data set. What are some possible questions you
|
||||||
|
# would be interested in exploring? Can you think of any data sets that
|
||||||
|
# might be interesting to explore? These could be public data sets,
|
||||||
|
# or they could be private data sets related to your work or your own
|
||||||
|
# life (you don't need to share your data set in the unit project).
|
||||||
|
|||||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1 +1,3 @@
|
|||||||
poetry.lock
|
.ipynb_checkpoints/*
|
||||||
|
.envrc
|
||||||
|
.venv
|
||||||
|
|||||||
@@ -175,7 +175,7 @@
|
|||||||
"name": "python",
|
"name": "python",
|
||||||
"nbconvert_exporter": "python",
|
"nbconvert_exporter": "python",
|
||||||
"pygments_lexer": "ipython3",
|
"pygments_lexer": "ipython3",
|
||||||
"version": "3.9.10"
|
"version": "3.13.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nbformat": 4,
|
"nbformat": 4,
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,20 +1,30 @@
|
|||||||
[tool.poetry]
|
[project]
|
||||||
name = "lab_pokemon"
|
name = "lab-pokemon"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Chris <chris@chrisproctor.net>"]
|
authors = [{ name = "Chris Proctor", email = "chris@chrisproctor.net" }]
|
||||||
license = "MIT"
|
requires-python = ">=3.10,<4.0"
|
||||||
|
readme = "README.md"
|
||||||
[tool.poetry.dependencies]
|
license = { text = "MIT" }
|
||||||
python = "^3.11"
|
classifiers = [
|
||||||
jupyterlab = "^3.3.3"
|
"Programming Language :: Python :: 3",
|
||||||
pandas = "^1.4.2"
|
"Programming Language :: Python :: 3.10",
|
||||||
matplotlib = "^3.5.1"
|
"Programming Language :: Python :: 3.11",
|
||||||
seaborn = "^0.11.2"
|
"Programming Language :: Python :: 3.12",
|
||||||
requests = "^2.27.1"
|
"Programming Language :: Python :: 3.13",
|
||||||
|
"Programming Language :: Python :: 3.14",
|
||||||
[tool.poetry.dev-dependencies]
|
]
|
||||||
|
dependencies = [
|
||||||
|
"jupyter (>=1.1.1,<2.0.0)",
|
||||||
|
"pandas (>=2.2.3,<3.0.0)",
|
||||||
|
"matplotlib (>=3.10.0,<4.0.0)",
|
||||||
|
"seaborn (>=0.13.2,<0.14.0)",
|
||||||
|
"requests (>=2.32.3,<3.0.0)",
|
||||||
|
]
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["uv_build>=0.9.0,<0.10.0"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "uv_build"
|
||||||
|
|
||||||
|
[tool.uv]
|
||||||
|
package = false
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
pandas
|
|
||||||
seaborn
|
|
||||||
Reference in New Issue
Block a user