Skip to content

Commit

Permalink
Merge pull request #2 from shaiu/shaiu/first-version
Browse files Browse the repository at this point in the history
First version
  • Loading branch information
shaiu authored Jul 12, 2024
2 parents cdecd44 + e9f89c9 commit 3a42204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 55 deletions.
56 changes: 2 additions & 54 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,9 @@
requires = ["setuptools >= 35.0.2", "wheel >= 0.29.0", "poetry>=0.12"]
build-backend = "poetry.core.masonry.api"

[tool.isort]
combine_as_imports = true
default_section = "THIRDPARTY"
force_grid_wrap = 0
force_sort_within_sections = true
forced_separate = "tests"
include_trailing_comma = true
indent = " "
known_first_party = "pyseventeentrack,examples,tests"
line_length = 88
multi_line_output = 3
not_skip = "__init__.py"
sections = "FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
use_parentheses = true

[tool.poetry]
name = "pyseventeentrack"
version = "0.0.10"
version = "1.0.0"
description = "A Simple Python API for 17track.net"
readme = "README.md"
authors = ["Shai Ungar <[email protected]>"]
Expand All @@ -37,7 +22,7 @@ classifiers = [
]

[tool.poetry.dependencies]
aiohttp = ">=3.8.0"
aiohttp = ">=3.9.5"
attrs = ">=19.3"
python = "^3.9.0"
pytz = ">=2021.1"
Expand All @@ -49,43 +34,6 @@ pytest = "^8.0.0"
pytest-aiohttp = "^1.0.0"
pytest-cov = "^3.0.0"

# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]

# Same as Black.
line-length = 88
indent-width = 4

# Assume Python 3.8
target-version = "py38"

[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
select = ["E4", "E7", "E9", "F"]
Expand Down
1 change: 0 additions & 1 deletion requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ frozenlist==1.4.1
identify==2.6.0
idna==3.7
iniconfig==2.0.0
isort==5.13.2
mccabe==0.7.0
multidict==6.0.5
mypy==1.10.1
Expand Down

0 comments on commit 3a42204

Please sign in to comment.