-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 1.2 KB
/
setup.py
File metadata and controls
37 lines (31 loc) · 1.2 KB
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
"""Setup file for the Python-Logo-Widgets package."""
# pylint: disable=locally-disabled, invalid-name, import-error
from setuptools import setup, find_packages
def readme():
"""Read the README.md file and use it as the long description."""
with open("README.md", encoding="utf-8") as f:
return f.read()
setup(
name="Python-Logo-Widgets",
version="2.2.2",
description=(
"A group of widgets showing the Python logos,"
" that can easily be added to your Python GUI code!"
),
long_description=readme(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Widget Sets",
],
keywords="logo powered widgets gui",
url="https://github.com/willtheorangeguy/Python-Logo-Widgets",
author="willtheorangeguy",
packages=find_packages(where="imgs"),
package_dir={"": "imgs"},
include_package_data=True,
py_modules=["length", "width", "logo", "main"],
entry_points={"console_scripts": ["python-logo-widgets=main:main"]},
)