Skip to content

Commit 3a24cde

Browse files
committed
chore: basic project setup
1 parent 8a8d5f0 commit 3a24cde

File tree

7 files changed

+66
-0
lines changed

7 files changed

+66
-0
lines changed

Diff for: .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/

Diff for: .python-version

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

Diff for: LICENSE renamed to LICENSE.txt

File renamed without changes.

Diff for: internetexplorer/mian.py

Whitespace-only changes.

Diff for: pyproject.toml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
[project]
2+
name = "internetexplorer"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
authors = [
6+
{ name = "2mal3", email = "[email protected]" }
7+
]
8+
dependencies = []
9+
readme = "README.md"
10+
requires-python = ">= 3.8"
11+
12+
[tool.ruff]
13+
target-version = "py311"
14+
line-length = 120
15+
16+
[tool.ruff.lint]
17+
# Rules are explained here: https://docs.astral.sh/ruff/rules
18+
select = ["E4", "E7", "E9", "F", "C", "N", "A", "SIM", "PL"]
19+
20+
[build-system]
21+
requires = ["hatchling"]
22+
build-backend = "hatchling.build"
23+
24+
[tool.rye]
25+
managed = true
26+
virtual = true
27+
dev-dependencies = []
28+
29+
[tool.hatch.metadata]
30+
allow-direct-references = true
31+
32+
[tool.hatch.build.targets.wheel]
33+
packages = ["internetexplorer"]

Diff for: requirements-dev.lock

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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:.

Diff for: requirements.lock

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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:.

0 commit comments

Comments
 (0)