-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.2 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
from setuptools import find_packages, setup
from modpack_changelogger.utils import VERSION
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="modpack_changelogger",
version=VERSION, # Use the version number defined in constants.py
packages=find_packages(),
description="A powerful and customizable Python tool to generate a changelog between two Minecraft modpacks in modrinth.mrpack or curseforge.zip format.",
author="TheBossMagnus",
author_email="[email protected]",
url="https://github.com/TheBossMagnus/ModpackChangelogger",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=[
"aiohttp>=3.9.5",
],
entry_points={
"console_scripts": [
"modpack-changelogger=modpack_changelogger:cli_wrapper.wrapper",
],
},
)