forked from bambora-na/beanstream-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 633 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 633 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from setuptools import setup
setup(
name='beanstream',
version='1.0.0',
description='Beanstream SDK library for processing credit card payments.',
author='Upverter Inc and Beanstream',
author_email='support@beanstream.com',
maintainer='Beanstream',
maintainer_email='support@beanstream.com',
packages=['beanstream'],
license='Apache2',
url='https://github.com/Beanstream-DRWP/beanstream-python',
download_url='https://github.com/Beanstream-DRWP/beanstream-python/tarball/1.0.0rc4',
keywords=['payments','credit card','ecommerce','tokenization','direct deposit','reporting'],
classifiers=[]
)