added uv and dotenv
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
3.14
|
||||||
@@ -3,13 +3,3 @@
|
|||||||
My roadmap for becoming competent quant and capable of creating automated trading bots.
|
My roadmap for becoming competent quant and capable of creating automated trading bots.
|
||||||
|
|
||||||
Current Goal: **Learn Quantitative Foundations**
|
Current Goal: **Learn Quantitative Foundations**
|
||||||
|
|
||||||
## Other
|
|
||||||
|
|
||||||
issue templating
|
|
||||||
reading # blue
|
|
||||||
coding # green
|
|
||||||
exam # orange
|
|
||||||
writeup # purple
|
|
||||||
research # yellow
|
|
||||||
bug # red (for when your code breaks)
|
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
[project]
|
||||||
|
name = "roadmap"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "Add your description here"
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.14"
|
||||||
|
dependencies = [
|
||||||
|
"dotenv>=0.9.9",
|
||||||
|
]
|
||||||
@@ -1,9 +1,14 @@
|
|||||||
import json
|
import json
|
||||||
import urllib.request
|
import urllib.request
|
||||||
|
import os
|
||||||
|
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
|
load_dotenv(override=True)
|
||||||
|
|
||||||
# --- MANDATORY AUTH CONFIGURATION ---
|
# --- MANDATORY AUTH CONFIGURATION ---
|
||||||
GITEA_URL = "http://git.burke.lan:3000" # No trailing slash
|
GITEA_URL = "http://git.burke.lan:3000" # No trailing slash
|
||||||
TOKEN = ""
|
TOKEN = os.getenv("GITEA_TOKEN")
|
||||||
OWNER = "burkkyy"
|
OWNER = "burkkyy"
|
||||||
REPO = "roadmap"
|
REPO = "roadmap"
|
||||||
MILESTONE_ID = 1
|
MILESTONE_ID = 1
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
version = 1
|
||||||
|
revision = 3
|
||||||
|
requires-python = ">=3.14"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "dotenv"
|
||||||
|
version = "0.9.9"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "python-dotenv" },
|
||||||
|
]
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b2/b7/545d2c10c1fc15e48653c91efde329a790f2eecfbbf2bd16003b5db2bab0/dotenv-0.9.9-py2.py3-none-any.whl", hash = "sha256:29cf74a087b31dafdb5a446b6d7e11cbce8ed2741540e2339c69fbef92c94ce9", size = 1892, upload-time = "2025-02-19T22:15:01.647Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "python-dotenv"
|
||||||
|
version = "1.2.2"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "roadmap"
|
||||||
|
version = "0.1.0"
|
||||||
|
source = { virtual = "." }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "dotenv" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.metadata]
|
||||||
|
requires-dist = [{ name = "dotenv", specifier = ">=0.9.9" }]
|
||||||
Reference in New Issue
Block a user