Compare commits

...

6 Commits

Author SHA1 Message Date
Chris Proctor 1e649dfc21 Package mode in pyproject 2025-01-13 23:29:46 -05:00
Chris Proctor 1fb67edff9 Poetry update 2025-01-13 21:51:41 -05:00
Chris Proctor 8368652725 Upgrade pyproject for poetry 2 spec 2025-01-13 17:49:56 -05:00
Chris Proctor ad567ef534 Python version to 3.10 2023-08-17 13:25:33 -04:00
Chris Proctor 7cf6016a4c Update gitignore 2023-07-31 10:56:09 -04:00
Chris Proctor 987703b6b4 Update j notebook to lab 2023-07-31 10:55:38 -04:00
6 changed files with 3170 additions and 1693 deletions

View File

@ -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).

2
.gitignore vendored
View File

@ -1 +1 @@
poetry.lock
.ipynb_checkpoints/*

File diff suppressed because one or more lines are too long

3071
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,20 +1,25 @@
[tool.poetry]
name = "lab_pokemon"
[project]
name = "lab-pokemon"
version = "0.1.0"
description = ""
authors = ["Chris <chris@chrisproctor.net>"]
license = "MIT"
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
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)"
]
[tool.poetry.dependencies]
python = "^3.11"
jupyterlab = "^3.3.3"
pandas = "^1.4.2"
matplotlib = "^3.5.1"
seaborn = "^0.11.2"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false

View File

@ -1,2 +0,0 @@
pandas
seaborn