-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f61a25
commit cb8f9a5
Showing
7 changed files
with
54 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
__version__ = '13.0.0' | ||
__version__ = '14.0.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,15 @@ | |
app_color = "grey" | ||
app_email = "[email protected]" | ||
app_license = "MIT" | ||
required_apps = ["erpnext", "hrms"] | ||
|
||
# Includes in <head> | ||
# ------------------ | ||
|
||
# include js, css files in header of desk.html | ||
# app_include_css = "/assets/check_run/css/check_run.css" | ||
app_include_js = [ | ||
"/assets/js/check_run.min.js" | ||
"check_run.bundle.js", | ||
] | ||
|
||
# include js, css files in header of web template | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import './check_run/check_run_quick_entry.js' | ||
import './check_run/check_run.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[project] | ||
name = "check_run" | ||
authors = [ | ||
{ name = "AgriTheory", email = "[email protected]"} | ||
] | ||
description = "Payables utility for ERPNext" | ||
requires-python = ">=3.10" | ||
readme = "README.md" | ||
dynamic = ["version"] | ||
dependencies = [ | ||
"atnacha @ git+https://github.com/AgriTheory/atnacha.git@main#egg=atnacha" | ||
] | ||
|
||
[build-system] | ||
requires = ["flit_core >=3.4,<4"] | ||
build-backend = "flit_core.buildapi" | ||
|
||
[tool.bench.dev-dependencies] | ||
hypothesis = "~=6.31.0" | ||
|
||
[tool.black] | ||
line-length = 99 | ||
|
||
[tool.isort] | ||
line_length = 99 | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 | ||
use_parentheses = true | ||
ensure_newline_before_comments = true | ||
indent = "\t" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,5 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
with open("requirements.txt") as f: | ||
install_requires = f.read().strip().split("\n") | ||
name = "check_run" | ||
|
||
# get version from __version__ variable in check_run/__init__.py | ||
from check_run import __version__ as version | ||
|
||
setup( | ||
name="check_run", | ||
version=version, | ||
description="Payables Utilities for ERPNext", | ||
author="AgriTheory", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
zip_safe=False, | ||
include_package_data=True, | ||
install_requires=install_requires | ||
) | ||
setup() |