Create setup.py

This commit is contained in:
Dima YaFlay
2022-01-02 05:40:43 +03:00
committed by GitHub
parent 48cf98f369
commit dbeb4d9e88

23
git/setup.py Normal file
View File

@@ -0,0 +1,23 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='minecraft_server_installer',
version='1.5.4',
scripts=['internet_button', 'create_command', 'starting_server_button', 'server_properties_button', 'close_command_button', 'start', 'folder', 'java_windows', 'delete_directory', 'backup_button', 'python_install'] ,
author="YaFlay",
author_email="yaflay@vk.com",
description="minecraft server creator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/YaFlay/Minecraft_server_creating",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)