Skip to content

Commit

Permalink
Included templates in PyPi package
Browse files Browse the repository at this point in the history
  • Loading branch information
Faisal-Manzer committed Nov 8, 2019
1 parent fb2a3bb commit b294e34
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include LICENSE
include README.md
recursive-include paytm/static *
recursive-include paytm/templates *
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1"
__version__ = '0.0.2'
1 change: 1 addition & 0 deletions paytm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__all__ = ['conf']
from paytm.settings import Configuration

conf = Configuration()
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This call to setup() does all the work
setup(
name='django-paytm-checkout',
version='0.0.1',
version='0.0.2',
description='A simple and modular django app to help with Paytm checkout and custom checkout',
long_description=README,
long_description_content_type='text/markdown',
Expand All @@ -26,7 +26,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(include=('paytm*', )),
packages=find_packages(include=('paytm*',)),
include_package_data=True,
install_requires=['django', 'djangorestframework'],
download_url='https://github.com/Faisal-Manzer/django-paytm-checkout/archive/0.0.1.tar.gz',
Expand Down

0 comments on commit b294e34

Please sign in to comment.