Skip to content

Commit f3f0bd9

Browse files
committed
Init
1 parent 459f857 commit f3f0bd9

6 files changed

Lines changed: 61 additions & 0 deletions

File tree

.bumpversion.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[bumpversion]
2+
current_version = 0.0.1
3+
commit = True
4+
tag = True
5+
6+
[bumpversion:file:setup.py]
7+

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
.idea

cryptopay/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"""
2+
Crypto.com pay wrapper library
3+
"""
4+
5+
6+
7+

cryptopay/api.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""
2+
Crypto.com API module
3+
"""
4+
5+
6+
class Client (object):
7+
8+
endpoint = 'https://pay.crypto.com'
9+
settings = {}
10+
11+
def __init__(self, settings):
12+
self.settings = settings
13+
14+
def login(self):
15+
pass

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="cryptopay",
8+
version="0.0.1",
9+
author="Peter Gonda",
10+
author_email="peter@pipoline.com",
11+
description="Crypto.com pay module",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/Pipoline/cryptopay",
15+
packages=setuptools.find_packages(),
16+
license="MIT",
17+
include_package_data=True,
18+
classifiers=[
19+
"Programming Language :: Python :: 3",
20+
"License :: OSI Approved :: MIT License",
21+
"Natural Language :: English",
22+
"Topic :: Utilities",
23+
"Programming Language :: Python",
24+
"Programming Language :: Python :: 2",
25+
"Programming Language :: Python :: 3",
26+
"Operating System :: OS Independent",
27+
],
28+
)

0 commit comments

Comments
 (0)