forked from FriedrichFroebel/brother_ql_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (50 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_namespace_packages
from pathlib import Path
ROOT_DIRECTORY = Path(__file__).parent.resolve()
setup(
name="brother_ql_web",
description="Simple label designer API and web API for Brother QL label printers",
version="0.1.0",
license="GPL-3.0-only",
long_description=(ROOT_DIRECTORY / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
author="Philipp Klaus (initial), FriedrichFröbel",
url="https://github.com/FriedrichFroebel/brother_ql_web/",
packages=find_namespace_packages(where=".", exclude=["tests", "tests.*"]),
include_package_data=True,
python_requires=">=3.8, <4",
install_requires=[
"brother_ql",
"bottle",
"jinja2",
],
extras_require={
"dev": [
"black",
"flake8",
"pep8-naming",
],
"mypy": [
"mypy",
"types-Pillow",
],
},
entry_points={
"console_scripts": [
"brother_ql_web=brother_ql_web.__main__:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Bottle",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics",
],
)