repackaged new-style
This commit is contained in:
parent
a8b5c70739
commit
1bcb79392e
221 changed files with 36 additions and 35 deletions
7
pyproject.toml
Normal file
7
pyproject.toml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[build-system]
|
||||||
|
requires = [
|
||||||
|
"setuptools>=42",
|
||||||
|
"wheel"
|
||||||
|
]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
pynbt
|
|
||||||
cryptography
|
|
||||||
aiohttp
|
|
||||||
termcolor
|
|
29
setup.cfg
Normal file
29
setup.cfg
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[metadata]
|
||||||
|
name = aiocraft
|
||||||
|
version = 0.0.8
|
||||||
|
author = alemi
|
||||||
|
author_email = me@alemi.dev
|
||||||
|
description = asyncio-powered headless minecraft client library
|
||||||
|
long_description = file: README.md
|
||||||
|
long_description_content_type = text/markdown
|
||||||
|
url = https://github.com/alemidev/aiocraft
|
||||||
|
project_urls =
|
||||||
|
Bug Tracker = https://github.com/alemidev/aiocraft/issues
|
||||||
|
classifiers =
|
||||||
|
Programming Language :: Python :: 3
|
||||||
|
License :: OSI Approved :: MIT License
|
||||||
|
Operating System :: OS Independent
|
||||||
|
|
||||||
|
[options]
|
||||||
|
install_requires =
|
||||||
|
pynbt
|
||||||
|
cryptography
|
||||||
|
aiohttp
|
||||||
|
termcolor
|
||||||
|
package_dir =
|
||||||
|
= src
|
||||||
|
packages = find:
|
||||||
|
python_requires = >=3.6
|
||||||
|
|
||||||
|
[options.packages.find]
|
||||||
|
where = src
|
31
setup.py
31
setup.py
|
@ -1,31 +0,0 @@
|
||||||
from setuptools import setup, find_packages
|
|
||||||
|
|
||||||
# # This was done at install time, I did it once and pushed it until there's no documentation
|
|
||||||
# from compiler.proto import compile
|
|
||||||
# compile()
|
|
||||||
|
|
||||||
with open("requirements.txt") as f:
|
|
||||||
requirements = f.read().split("\n")
|
|
||||||
|
|
||||||
setup(
|
|
||||||
name='aiocraft',
|
|
||||||
version='0.0.7',
|
|
||||||
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(),
|
|
||||||
package_data = {
|
|
||||||
'aiocraft': ['py.typed'],
|
|
||||||
},
|
|
||||||
install_requires=requirements,
|
|
||||||
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',
|
|
||||||
],
|
|
||||||
)
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue