Skip to content

Commit 455ff00

Browse files
author
Abhay Rana
committed
Fixes setup.py to point to resources subdirectory
1 parent 9c99dc9 commit 455ff00

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

MANIFEST.in

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@ include LICENSE, CHANGELOG.md, README.md
22
recursive-include tests *
33
recursive-include razorpay *
44
recursive-include examples *
5-
recursive-include docs *
6-
recursive-exclude docs *.pyc
75
recursive-exclude razorpay *.pyc
86
recursive-exclude docs *.pyo
97
recursive-exclude tests *.pyc
10-
recursive-exclude tests *.pyo
11-
recursive-exclude examples *.pyc
12-
recursive-exclude examples *.pyo
13-
prune docs/_build
14-
prune docs/_themes
8+
recursive-exclude tests *.pyo

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ razor = razorpay.Client(auth=("<YOUR_API_KEY>", "<YOUR_API_SECRET>"))
6868

6969
All of those are welcome. You can [file issues][issues] or [submit pull requests][pulls] in this repository.
7070

71-
[issues]: https://github.com/decached/razorpay/issues
72-
[pulls]: https://github.com/decached/razorpay/pulls
71+
[issues]: https://github.com/razorpay/razorpay-python/issues
72+
[pulls]: https://github.com/razorpay/razorpay-python/pulls

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
setup(
44
name="razorpay",
5-
version="0.1.1",
5+
version="0.1.2",
66
description="Razorpay Python Client",
7-
url="https://github.com/decached/razorpay",
8-
author="Akash Kothawale",
9-
author_email="akash@decached.com",
7+
url="https://github.com/razorpay/razorpay-python",
8+
author="Team Razorpay",
9+
author_email="support@razorpay.com",
1010
license="MIT",
1111
install_requires=["requests"],
12-
packages=["razorpay"],
12+
package_dir={'razorpay': 'razorpay', 'razorpay.resources': 'razorpay/resources'},
13+
packages=['razorpay', 'razorpay.resources'],
1314
keywords='razorpay payment gateway india',
1415
classifiers=[
1516
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)