forked from simas/django-webtopay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 785 Bytes
/
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
# -*- coding: UTF-8 -*-
#!/usr/bin/env python
from setuptools import setup, find_packages
import webtopay
setup(
name='django-webtopay',
version=".".join(map(str, webtopay.__version__)),
author='Motiejus Jakštys',
author_email='[email protected]',
url='https://github.com/Motiejus/django-webtopay',
install_requires=['Django>=1.3', 'pyopenssl'],
description = 'A pluggable Django application for integrating WebToPay Payments',
packages=find_packages(),
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License"
],
)