forked from frappe/webshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: order creation (frappe#198) (frappe#199)
(cherry picked from commit 943da19) Co-authored-by: Nihantra C. Patel <[email protected]>
- Loading branch information
Showing
4 changed files
with
39 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
include MANIFEST.in | ||
include requirements.txt | ||
include *.json | ||
include *.md | ||
include *.py | ||
include *.txt | ||
recursive-include webshop *.css | ||
recursive-include webshop *.csv | ||
recursive-include webshop *.html | ||
recursive-include webshop *.ico | ||
recursive-include webshop *.js | ||
recursive-include webshop *.json | ||
recursive-include webshop *.md | ||
recursive-include webshop *.png | ||
recursive-include webshop *.py | ||
recursive-include webshop *.svg | ||
recursive-include webshop *.txt | ||
recursive-exclude webshop *.pyc |
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 @@ | ||
# frappe -- https://github.com/frappe/frappe is installed via 'bench init' |
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,19 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("requirements.txt") as f: | ||
install_requires = f.read().strip().split("\n") | ||
|
||
# get version from __version__ variable in webshop/__init__.py | ||
from webshop import __version__ as version | ||
|
||
setup( | ||
name="webshop", | ||
version=version, | ||
description="Open Source eCommerce Platform", | ||
author="Frappe Technologies Pvt. Ltd.", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
zip_safe=False, | ||
include_package_data=True, | ||
install_requires=install_requires | ||
) |
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