-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
34 lines (33 loc) · 1.02 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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
requirements = [
'qrcode',
'CRC-ITU',
'crc16'
]
with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name='pypromptpay',
version='0.5.3',
description="PromptPay QR code in Python",
author='Wannaphong Phatthiyaphaibun',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/wannaphong/pypromptpay',
packages=['.'],
package_data={'': ['LICENSE','README.md']},
include_package_data=True,
test_suite="test",
install_requires=requirements,
license='Apache Software License 2.0',
zip_safe=False,
keywords='promptpay',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: Implementation'],
)