-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.01 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
import bluefin
DESCRIPTION = "A simple Bluefin Payment System API."
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass
version_str = '%d.%d' % (bluefin.VERSION[0], bluefin.VERSION[1])
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(
name='bluefin',
version=version_str,
packages=[
'bluefin',
'bluefin.directmode',
'bluefin.dataretrieval',
],
install_requires=['requests'],
author='Gregory Taylor',
author_email='gtaylor@duointeractive.com',
url='https://github.com/duointeractive/python-bluefin/',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
)