improved installer
This commit is contained in:
parent
d91840efc9
commit
a697ca21dd
2 changed files with 8 additions and 2 deletions
3
requirements.txt
Normal file
3
requirements.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
cryptography
|
||||
aiohttp
|
||||
termcolor
|
7
setup.py
7
setup.py
|
@ -4,16 +4,19 @@ from compiler.proto import compile
|
|||
|
||||
compile()
|
||||
|
||||
with open("requirements.txt") as f:
|
||||
requirements = f.read().split("\n")
|
||||
|
||||
setup(
|
||||
name='aiocraft',
|
||||
version='0.0.2',
|
||||
version='0.0.4',
|
||||
description='asyncio-powered headless minecraft client library',
|
||||
url='https://github.com/alemidev/aiocraft',
|
||||
author='alemi',
|
||||
author_email='me@alemi.dev',
|
||||
license='MIT',
|
||||
packages=find_packages(),
|
||||
install_requires=[],
|
||||
install_requires=requirements,
|
||||
classifiers=[
|
||||
'Development Status :: 1 - Planning',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
Loading…
Reference in a new issue