forked from gungorbudak/cartridge-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (44 loc) · 1.47 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#-----------------------------------------------------------------------------
# Copyright (c) 2013, Evan Leis
#
# Distributed under the terms of the Apache Software License
#-----------------------------------------------------------------------------
import os
from setuptools import setup, find_packages
rel = lambda * x: os.path.abspath(os.path.join(os.path.dirname(__file__), *x))
with open(rel('./README.md')) as readme:
long_description = readme.read()
setup(
name='cartridge-payments',
version='0.97.0',
description="Cartridge multiple payment options module.",
long_description=long_description,
author='Evan Leis',
author_email='[email protected]',
url='https://github.com/explodes/cartridge-payments',
install_requires=[
],
setup_requires=[
],
packages=find_packages(exclude=[
]),
include_package_data=True,
package_data={},
zip_safe=False,
entry_points="""
""",
license="Apache Software License",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
],
)