forked from otov4its/django-walletone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.21 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
import os.path
from setuptools import setup, find_packages
from walletone import __version__
def long_description():
here = os.path.dirname(os.path.abspath(__file__))
return open(os.path.join(here, 'README.rst')).read()
setup(
name="django-walletone",
version=__version__,
description='WalletOne payment system integration in Django.',
long_description=long_description(),
url='https://github.com/otov4its/django-walletone',
license='MIT',
author='Stanislav Otovchits',
author_email='[email protected]',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[
'Django>=1.7'
],
keywords=['django', 'walletone', 'w1'],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)