Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

Commit

Permalink
upd django
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxMaSk committed Apr 18, 2018
1 parent adab436 commit 5ffec04
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 53,7 @@ Requirements:

* Python 3.6
* Django 2
* arrow 0.12.0
* arrow 0.12.x


Installation:
Expand Down
2 changes: 1 addition & 1 deletion dj_diabetes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
VERSION = (0, 3, 0) # PEP 386
VERSION = (0, 3, 1) # PEP 386
__version__ = ".".join([str(x) for x in VERSION])

default_app_config = 'dj_diabetes.apps.DjDiabetesConfig'
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
arrow==0.12.0
Django==2.0
arrow==0.12.1
Django>=2.0,<3.0
six==1.11.0
flake8==3.5.0
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 12,20 @@ def reqs(*f):
os.path.join(os.getcwd(), *f)).readlines()]))


long_description = reqs('README.rst')
install_requires = reqs('requirements.txt')

setup(
name='dj_diabetes',
version=version,
description='Django Diabetes is a personal Glucose Manager',
long_description=long_description,
author='FoxMaSk',
maintainer='FoxMaSk',
author_email='[email protected]',
maintainer_email='[email protected]',
url='https://github.com/foxmask/dj-diabetes',
download_url="https://github.com/foxmask/dj-diabetes/"
url='https://github.com/push-things/dj-diabetes',
download_url="https://github.com/push-things/dj-diabetes/"
"archive/dj-diabetes-" version ".zip",
packages=find_packages(exclude=['dj_diabetes/local_settings']),
classifiers=[
Expand Down

0 comments on commit 5ffec04

Please sign in to comment.