Skip to content

Commit 6af792a

Browse files
chore: prepare deploy
1 parent 2c0e94b commit 6af792a

3 files changed

Lines changed: 33 additions & 7 deletions

File tree

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,25 @@
11
# Welcome to pythoncms
2+
3+
4+
Local dev
5+
6+
Install package
7+
8+
9+
```
10+
python -m pip install -e .
11+
```
12+
Then initialise
13+
14+
```
15+
cd pythoncms
16+
shopyo initialise
17+
flask --debug run
18+
```
19+
20+
for migrating
21+
22+
```
23+
flask db migrate
24+
flask db upgrade
25+
```

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
shopyo==4.8.6
2+
SQLAlchemy==1.4.46

setup.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
long_description=long_description, # Optional
3535
long_description_content_type="text/markdown", # Optional (see note above)
3636
url="", # Optional
37-
author="", # Optional
38-
author_email="", # Optional
37+
author="Abdur-Rahmaan Janhangeer", # Optional
38+
author_email="arj.python@gmail.com", # Optional
3939
# Classifiers help users find your project by categorizing it.
4040
#
4141
# For a list of valid classifiers, see https://pypi.org/classifiers/
@@ -54,12 +54,13 @@
5454
# that you indicate whether you support Python 2, Python 3 or both.
5555
# These classifiers are *not* checked by 'pip install'. See instead
5656
# 'python_requires' below.
57-
"Programming Language :: Python :: 3.6",
5857
"Programming Language :: Python :: 3.7",
5958
"Programming Language :: Python :: 3.8",
6059
"Programming Language :: Python :: 3.9",
60+
"Programming Language :: Python :: 3.10",
61+
"Programming Language :: Python :: 3.11",
6162
],
62-
keywords="", # Optional
63+
keywords="cms", # Optional
6364
# You can just specify package directories manually here if your project is
6465
# simple. Or you can use find_packages().
6566
#
@@ -72,13 +73,13 @@
7273
# packages=find_packages(exclude=['contrib', 'docs', 'tests']), # Required
7374
packages=["pythoncms"],
7475
include_package_data=True,
75-
python_requires=">=3.6",
76+
python_requires=">=3.7",
7677
install_requires=open(os.path.join(here, "requirements.txt"), encoding="utf-8")
7778
.read()
7879
.split("\n"), # Optional
7980
project_urls={ # Optional
80-
"Bug Reports": "",
81-
"Source": "",
81+
"Bug Reports": "https://github.com/shopyo/pythoncms/issues",
82+
"Source": "https://github.com/shopyo/pythoncms",
8283
},
8384
entry_points={"console_scripts": ["pythoncms=pythoncms.cli:cli"]},
8485
)

0 commit comments

Comments
 (0)