Skip to content

Commit 6989b19

Browse files
committed
Boilerplate from rye init and rye add air
0 parents  commit 6989b19

7 files changed

+80
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# python generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# venv
10+
.venv

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12.3

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# air-feldroy-com
2+
3+
Describe your project here.

pyproject.toml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[project]
2+
name = "air-feldroy-com"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
authors = [
6+
{ name = "Audrey M. Roy Greenfeld", email = "[email protected]" }
7+
]
8+
dependencies = [
9+
"air>=0.2.0",
10+
]
11+
readme = "README.md"
12+
requires-python = ">= 3.8"
13+
14+
[build-system]
15+
requires = ["hatchling"]
16+
build-backend = "hatchling.build"
17+
18+
[tool.rye]
19+
managed = true
20+
dev-dependencies = []
21+
22+
[tool.hatch.metadata]
23+
allow-direct-references = true
24+
25+
[tool.hatch.build.targets.wheel]
26+
packages = ["src/air_feldroy_com"]

requirements-dev.lock

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# generated by rye
2+
# use `rye lock` or `rye sync` to update this lockfile
3+
#
4+
# last locked with the following flags:
5+
# pre: false
6+
# features: []
7+
# all-features: false
8+
# with-sources: false
9+
# generate-hashes: false
10+
11+
-e file:.
12+
air==0.2.0
13+
# via air-feldroy-com
14+
jinja2==3.1.4
15+
# via air
16+
markdown==3.6
17+
# via air
18+
markupsafe==2.1.5
19+
# via jinja2

requirements.lock

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# generated by rye
2+
# use `rye lock` or `rye sync` to update this lockfile
3+
#
4+
# last locked with the following flags:
5+
# pre: false
6+
# features: []
7+
# all-features: false
8+
# with-sources: false
9+
# generate-hashes: false
10+
11+
-e file:.
12+
air==0.2.0
13+
# via air-feldroy-com
14+
jinja2==3.1.4
15+
# via air
16+
markdown==3.6
17+
# via air
18+
markupsafe==2.1.5
19+
# via jinja2

src/air_feldroy_com/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello() -> str:
2+
return "Hello from air-feldroy-com!"

0 commit comments

Comments
 (0)