Skip to content

Commit

Permalink
Merge pull request madprogrammer#6 from llybin/install_requires
Browse files Browse the repository at this point in the history
add install_requires in setup without hard versions
  • Loading branch information
madprogrammer authored Sep 30, 2019
2 parents 47ace52 + 05c56f3 commit f08ace3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import setuptools

setuptools.setup(name='django-sberbank',
setuptools.setup(
name='django-sberbank',
version='0.2.30',
description='Django app for Sberbank payments',
url='http://github.com/madprogrammer/django-sberbank',
Expand All @@ -10,10 +11,16 @@
packages=setuptools.find_packages(),
platforms='any',
zip_safe=False,
install_requires=[
'django',
'django-jsonfield',
'djangorestframework',
'celery',
'requests',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
)

0 comments on commit f08ace3

Please sign in to comment.