aiocraft/setup.py
2021-12-01 13:28:59 +01:00

25 lines
622 B
Python

from setuptools import setup, find_packages
from compiler.proto import compile
compile()
setup(
name='aiocraft',
version='0.0.1',
description='asyncio-powered headless minecraft client',
url='https://github.com/alemidev/aiocraft',
author='alemi',
author_email='me@alemi.dev',
license='MIT',
packages=find_packages(),
install_requires=[],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)