-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 929 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
26
27
28
29
30
31
32
33
34
35
import pathlib
try:
# Use setup() from setuptools(/distribute) if available
from setuptools import setup
except ImportError:
from distutils.core import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
from barqrcode import __version__
setup(
name="barqrcode",
version=__version__,
# Your name & email here
long_description=README,
long_description_content_type="text/markdown",
description="A program to take a number and print a number of bar or qr codes of it.",
url="https://github.com/EricGebhart",
author="Eric Gebhart",
author_email="e.a.gebhart@gmail.com",
packages=["barqrcode"],
package_data={},
scripts=[],
license="MIT",
entry_points={"console_scripts": ["barqrcode=barqrcode.__main__:main"]},
install_requires=[
"python-barcode",
"qrcode",
"pillow",
"brother_ql",
],
)