-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (23 loc) · 882 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
"""Setup file for LEGO Block Creator."""
from setuptools import setup
def readme():
"""Read the README.md file."""
with open("README.md", encoding="UTF-8") as f:
return f.read()
setup(
name="lego-block-creator",
version="0.4.0",
description="Offline inventory tracking of LEGO parts and sets through an easy to use CLI.",
long_description=readme(),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
keywords="lego block blocks inventory sets sort cli",
url="https://github.com/Dog-Face-Development/LEGO-Block-Creator",
author="willtheorangeguy",
entry_points={"console_scripts": ["lego-block-creator=main:lego_cmd"]},
)