-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 1.03 KB
/
setup.py
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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='quix.pay',
version='0.1.4',
description='Abstract credit card processing with online payment gateways such as Authorize.Net.',
long_description=read('README'),
author='Micah Carrick',
url='http://www.quixotix.com',
author_email='[email protected]',
packages=find_packages(),
namespace_packages=['quix'],
install_requires=['setuptools'],
license='BSD',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
],
keywords = 'payment gateway processor credit card authorize.net AIM paypal'
)