forked from ViktorStiskala/python-qrplatba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (31 loc) · 1.01 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
# coding=utf-8
import os
import sys
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
is_py_2_version = sys.version_info[0] == 2
requirements = ['qrcode>=3.0.0']
if is_py_2_version:
requirements.append('six')
setup(
name='qrplatba',
version='0.3.5',
packages=['qrplatba'],
include_package_data=True,
license='MPL',
description='QR platba SVG QR code and SPAYD string generator',
author='Viktor Stískala',
author_email='viktor@stiskala.cz',
install_requires=requirements,
# test_suite='qrplatba.tests',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)