Skip to content
This repository has been archived by the owner on Nov 14, 2022. It is now read-only.

Commit

Permalink
bump: 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdur-rahmaanJ committed Aug 21, 2022
1 parent 059dfb5 commit 60e4304
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 15 deletions.
45 changes: 39 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,41 @@
## Unreleased

### Feat

- modules 100% configured from info.json:
added dashboard, display_string and module_name to info.json
- startapp templates changed
- login has warning notif on bad login
- added commented out imports on view.py template
- shopyo command activates manage.py commands
- Add csv upload
- **inventory**: Add more back button to flow
- **sidebar**: Add sidebar color to inventory (product+category)
- **sidebar**: Add color selected sidebar item mechanism
- category display when choosing sub-category
- back button for product view flow
- **config.json**: Cmd utils for applying json file
- added deploy preview to pythonanywhere
- add wish list

### Fix

- Add delete confirmation before deleting products
- **dashboard**: rm notif test
- **product**: category and sub-category display
- product category listing
- sub category image
- category display (button + image)
- Add pre-commit
- notif popup
- running of package
- **wsgi**: path is automatically set as cwd
- setup
- setup
- setup instructions
- deleted files
- fixes
- customer orders
- filter now works
- scroll checkout
- space
- drawer

### Refactor

- change to package with src layout
- .gitignore reapplied
20 changes: 11 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@
"""

# Always prefer setuptools over distutils
from setuptools import setup
import glob
import os
import sys

import setuptools

# Always prefer setuptools over distutils
from setuptools import find_packages
from setuptools import setup

# from setuptools import find_packages

import os
import sys
import glob

here = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -32,7 +34,7 @@
long_description = f.read()
setup(
name="shopcube", # Required
version="4.1.0", # Required
version="4.2.0", # Required
description="E-commerce solution", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional (see note above)
Expand Down Expand Up @@ -80,9 +82,9 @@
.read()
.split("\n"), # Optional
extras_require={
'dev': open(os.path.join(here, "reqs", "dev.txt"), encoding="utf-8")
.read()
.split("\n"),
"dev": open(os.path.join(here, "reqs", "dev.txt"), encoding="utf-8")
.read()
.split("\n"),
},
project_urls={ # Optional
"Bug Reports": "https://github.com/shopyo/shopcube/issues",
Expand Down

0 comments on commit 60e4304

Please sign in to comment.