-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 1.09 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
import setuptools
with open('README.md') as f:
long_description = f.read()
required_modules = ['requests']
setuptools.setup(
name='multicraft',
version='0.0.2',
author='Legopitstop',
description='Interact with your Minecraft server from hosts that use Multicraft using Python',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/legopitstop/multicraft-py',
packages=setuptools.find_packages(),
install_requires=required_modules,
license='MIT',
keywords=['multicraft', 'minecraft', 'minecraftserver', 'server'],
author_email='officiallegopitstop@gmail.com',
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.11',
],
python_requires='>=3.10'
)