-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
executable file
·43 lines (36 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
39
40
41
42
43
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pyqart
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
setup(
name='pyqart',
keywords=['qrcode', 'qart'],
version=pyqart.__version__,
description='QArt Python implementation, '
'see http://research.swtch.com/qart for details.',
author='7sDream',
author_email='[email protected]',
license='MIT',
url='https://github.com/7sDream/pyqart',
install_requires=['pillow'],
packages=packages,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={
'console_scripts': [
'pyqr = pyqart.qr_entry:main',
'pyqart = pyqart.qart_entry:main',
]
}
)