Skip to content

Commit 4c3be15

Browse files
committed
Release v0.0.1 - The minimal code
1 parent 96c3b73 commit 4c3be15

File tree

6 files changed

+87
-3
lines changed

6 files changed

+87
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Change Log
22

3-
## [0.0.1] 2022-10-14
4-
### Project Creation
3+
## [0.0.1] 2022-10-18
4+
### Initial Verison
55

66
- The start of the project is tracked
7-
- just the minimal structure
7+
- Just the minimal feature provided
8+
- `get_products()` helper
9+

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 [App Generator](https://appseed.us)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include LICENSE.md
2+
include README.md
3+
recursive-include py_stripe *
4+
recursive-include docs *

docs/blank.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"coming soon"

products.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"data": [
3+
{
4+
"id": "prod_L3QBiEdGWquAHl",
5+
"Name": "Django Datta Able PRO",
6+
"Description": "Premium Django Seed project",
7+
"Images": [
8+
"https://files.stripe.com/links/MDB8YWNjdF8xSGxXdEdHTExkMVgwN1ZVfGZsX3Rlc3RfZjNtOGxwZTRFdGp1MGp1N2ZUeFlENU9Q008T4Zyl6Z"
9+
],
10+
"Price": 99.0
11+
}
12+
]
13+
}

setup.py

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import os
2+
from setuptools import find_packages, setup
3+
4+
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
5+
README = readme.read()
6+
7+
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
8+
9+
setup(
10+
name='py-stripe',
11+
version='0.0.1',
12+
zip_safe=False,
13+
packages=find_packages(),
14+
include_package_data=True,
15+
description='Simple Wrapper for Stripe API, written in Python',
16+
long_description=README,
17+
long_description_content_type="text/markdown",
18+
url='https://github.com/app-generator/ecomm-wrapper-stripe',
19+
author='AppSeed.us',
20+
author_email='support@appseed.us',
21+
license='MIT License',
22+
install_requires=[
23+
'stripe',
24+
'python-dotenv',
25+
],
26+
classifiers=[
27+
'Intended Audience :: Developers',
28+
'License :: OSI Approved :: MIT License',
29+
'Operating System :: OS Independent',
30+
'Programming Language :: Python',
31+
'Programming Language :: Python :: 2.6',
32+
'Programming Language :: Python :: 2.7',
33+
'Programming Language :: Python :: 3.2',
34+
'Programming Language :: Python :: 3.3',
35+
'Programming Language :: Python :: 3.4',
36+
'Programming Language :: Python :: 3.5',
37+
'Programming Language :: Python :: 3.6',
38+
'Environment :: Web Environment',
39+
'Topic :: Software Development',
40+
'Topic :: Software Development :: Payments',
41+
'Topic :: Software Development :: Stripe',
42+
],
43+
)

0 commit comments

Comments
 (0)