Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit 07ec735

Browse files
Added PIP setup.py file
1 parent 1564532 commit 07ec735

File tree

2 files changed

+36
-8
lines changed

2 files changed

+36
-8
lines changed

.gitignore

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
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

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
author_email='[email protected]',
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+
)

0 commit comments

Comments
 (0)