File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ [bumpversion]
2+ current_version = 0.0.1
3+ commit = True
4+ tag = True
5+
6+ [bumpversion:file:setup.py]
7+
Original file line number Diff line number Diff line change 1+ # Created by .ignore support plugin (hsz.mobi)
2+ .idea
Original file line number Diff line number Diff line change 1+ """
2+ Crypto.com pay wrapper library
3+ """
4+
5+
6+
7+
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ [bdist_wheel]
2+ universal = 1
Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments