Skip to content

Commit

Permalink
bump(pythoncms): 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdur-rahmaanJ committed Feb 6, 2023
1 parent 2419370 commit e25ef8f
Show file tree
Hide file tree
Showing 430 changed files with 52,619 additions and 16,956 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ Go to [http://127.0.0.1:5000](http://127.0.0.1:5000)

## 馃嵓 First time setup

- Install maildev

- Run `maildev`, go to the webapp url shown

- Download and install the [latest version of git](https://git-scm.com/downloads).

- Configure git with your [username](https://docs.github.com/en/github/using-git/setting-your-username-in-git) and [email](https://docs.github.com/en/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address).
Expand Down
Binary file modified reqs/app.in
Binary file not shown.
9 changes: 6 additions & 3 deletions reqs/app.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,22 @@ pymysql==1.0.2
# via -r reqs/app.in
python-dateutil==2.8.2
# via pandas
pythoncms==1.2.1
# via -r reqs/app.in
pytz==2022.2.1
# via pandas
shopyo==4.5.8
# via -r reqs/app.in
shopyo==4.8.6
# via pythoncms
six==1.16.0
# via
# flask-marshmallow
# python-dateutil
sqlalchemy==1.4.27
sqlalchemy==1.4.46
# via
# alembic
# flask-sqlalchemy
# marshmallow-sqlalchemy
# pythoncms
# shopyo
werkzeug==2.2.2
# via
Expand Down
7 changes: 5 additions & 2 deletions reqs/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ pytest-order==1.0.0
# via -r reqs/dev.in
python-dateutil==2.8.2
# via pandas
pythoncms==1.2.1
# via -r reqs/app.in
pytz==2021.3
# via
# babel
Expand All @@ -185,8 +187,8 @@ requests==2.26.0
# via
# codecov
# sphinx
shopyo==4.5.8
# via -r reqs/app.in
shopyo==4.8.6
# via pythoncms
six==1.16.0
# via
# flask-marshmallow
Expand Down Expand Up @@ -214,6 +216,7 @@ sqlalchemy==1.4.46
# alembic
# flask-sqlalchemy
# marshmallow-sqlalchemy
# pythoncms
# shopyo
toml==0.10.2
# via
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
long_description = f.read()
setup(
name="shopcube", # Required
version="4.4.0", # Required
version="4.5.0", # Required
description="E-commerce solution", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional (see note above)
Expand All @@ -59,11 +59,11 @@
# that you indicate whether you support Python 2, Python 3 or both.
# These classifiers are *not* checked by 'pip install'. See instead
# 'python_requires' below.
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="flask pos management shop ecommerce cms erp e-commerce", # Optional
# You can just specify package directories manually here if your project is
Expand Down
5 changes: 5 additions & 0 deletions src/shopcube/.test.prod.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
SECRET_KEY = "secret"
MAIL_USERNAME = "[email protected]"
MAIL_PASSWORD = "pass"
MAIL_DEFAULT_SENDER = "[email protected]"
SQLALCHEMY_DATABASE_URI = "mysql+pymysql://db_username:db_password@db_host/db_name"
2 changes: 2 additions & 0 deletions src/shopcube/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version_info = (1, 2, 1)
__version__ = ".".join([str(v) for v in version_info])
2 changes: 1 addition & 1 deletion src/shopcube/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ def main():


if __name__ == "__main__":
main()
main()
Loading

0 comments on commit e25ef8f

Please sign in to comment.