-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 896 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 896 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='Labelize',
version='1.4',
author="Nathan Shaffer",
author_email="nathanjshaffer@gmail.com",
description="Gui utility to generate oragnizer labels",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nathanjshaffer/labelize",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
packages=find_packages(),
entry_points={'console_scripts': [
'labelize=labelize.run:package',
]},
install_requires=['Pint', 'FreeSimpleGUI', 'configparser', 'Pillow', 'types-Pillow'],
include_package_data=True,
package_data={
"labelize": ["img/labelize.png", "img/help_outline_16dp_1F1F1F.png"],
},
)