Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 16 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
.env
._*
.AppleDouble
.cache
.coverage
.DS_Store
.AppleDouble
.env
.env-override
.idea
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes

# virtual environment
venv

/build
/dist
/MANIFEST
/easypost.egg-info
*.pyc
*.egg
.tox
.Trashes
.virtualenv
*.class

*.egg
*.egg-info
*.pyc
*.sublime-*

/MANIFEST
dist
docs/build/
Icon
test
venv
virtualenv
.virtualenv
.idea
.coverage
.env-override
/venv*
docs/build/
9 changes: 0 additions & 9 deletions .isort.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ black-check:

## build - Builds the project in preparation for release
build:
$(VIRTUAL_BIN)/python setup.py sdist bdist_wheel
$(VIRTUAL_BIN)/python -m build

## clean - Remove the virtual environment and clear out .pyc files
clean:
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ line-length = 120

[tool.isort]
profile = "black"
line_length = 120
indent = 4
force_grid_wrap = 2
multi_line_output = 3
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
lines_after_imports = 2
include_trailing_comma = true
use_parentheses = true
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
DEV_REQUIREMENTS = [
"bandit==1.7.1", # Bandit 1.7.2 drops support for Python 3.6
"black==22.*",
"build==0.8.*",
"coveralls == 3.*",
"flake8==5.*",
"isort==5.*",
Expand Down Expand Up @@ -39,6 +40,7 @@
url="https://easypost.com/",
packages=find_packages(
exclude=[
"docs",
"examples",
"tests",
]
Expand Down