This repository was archived by the owner on Jun 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +36
-8
lines changed
Expand file tree Collapse file tree 2 files changed +36
-8
lines changed Original file line number Diff line number Diff line change 1- multisafepay /resources /__pycache__ /orders.cpython-37.pyc
2- multisafepay /resources /__pycache__ /__init__.cpython-37.pyc
3- multisafepay /__pycache__ /__init__.cpython-37.pyc
4- .idea /workspace.xml
5- .idea /untitled.iml
6- .idea /modules.xml
7- .idea /misc.xml
8- .idea /encodings.xml
1+ /build
2+ /dist
3+ /* .egg-info
4+ /.eggs
95* .pyc
106* .xml
117* .iml
Original file line number Diff line number Diff line change 1+ from setuptools import find_packages , setup
2+ version = "1.0.0"
3+
4+
5+ def readme ():
6+ with open ("README.md" ) as f :
7+ return f .read ()
8+
9+
10+ setup (
11+ name = 'multisafepay-python-wrapper' ,
12+ version = version ,
13+ license = 'BSD' ,
14+ long_description = readme (),
15+ long_description_content_type = 'text/markdown' ,
16+ packages = find_packages (),
17+ include_package_data = True ,
18+ description = 'MultiSafepay Wrapper for Python' ,
19+ author = 'MultiSafepay B.V.' ,
20+ 21+ url = 'https://github.com/MultiSafepay/multisafepay-python-wrapper' ,
22+ install_requires = [
23+ 'requests' ,
24+ ],
25+ classifiers = [
26+ 'Programming Language :: Python' ,
27+ 'Programming Language :: Python :: 3' ,
28+ 'Intended Audience :: Developers' ,
29+ 'License :: OSI Approved :: MIT Licence' ,
30+ 'Topic :: Office/Business :: Financial' ,
31+ ],
32+ )
You can’t perform that action at this time.
0 commit comments