kopia lustrzana https://github.com/rtts/django-simplecms
Prepare for first release
rodzic
e228763052
commit
a5d468d54c
|
@ -1,3 +1,4 @@
|
|||
*.pyc
|
||||
__pycache__/
|
||||
/django_simplecms.egg-info/
|
||||
/dist/
|
|
@ -93,6 +93,7 @@ create a superuser:
|
|||
|
||||
$ cd mysite
|
||||
$ sudo su postgres -c "createuser mysite; createdb -O mysite mysite"
|
||||
$ ./manage.py makemigrations
|
||||
$ ./manage.py migrate
|
||||
$ ./manage.py createsuperuser
|
||||
|
||||
|
@ -100,8 +101,3 @@ Finally, run the development server and visit
|
|||
http://localhost:8000/login/ in your browser to log in!
|
||||
|
||||
$ ./manage.py runserver
|
||||
|
||||
## Getting help or contributing
|
||||
|
||||
I'd love to hear from you! If you have any questions or contributions,
|
||||
don't hesitate to contact me via jj [at] rtts.eu.
|
||||
|
|
17
setup.py
17
setup.py
|
@ -1,18 +1,29 @@
|
|||
#!/usr/bin/env python
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open('README.md', 'r') as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(
|
||||
name = 'django-simplecms',
|
||||
description = 'Simple Django CMS',
|
||||
version = '1.0.3',
|
||||
url = 'https://github.com/rtts/django-simplecms',
|
||||
author = 'Jaap Joris Vens',
|
||||
author_email = 'jj@rtts.eu',
|
||||
license = 'GPL3',
|
||||
author_email = 'jj+cms@rtts.eu',
|
||||
url = 'https://github.com/rtts/django-simplecms',
|
||||
long_description = long_description,
|
||||
long_description_content_type = 'text/markdown',
|
||||
packages = find_packages(),
|
||||
entry_points = {
|
||||
'console_scripts': ['simplecms=cms.__main__:main'],
|
||||
},
|
||||
include_package_data = True,
|
||||
classifiers = [
|
||||
'Programming Language :: Python :: 3',
|
||||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
||||
'Operating System :: OS Independent',
|
||||
],
|
||||
python_requires = '>=3.8',
|
||||
install_requires = [
|
||||
'django',
|
||||
'django-extensions',
|
||||
|
|
Ładowanie…
Reference in New Issue