31 Star 135 Fork 42

jamon / obEspoir

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
jamon 提交于 2021-05-05 08:52 . course33(websocket接入)
# coding=utf-8
"""
author = jamon
"""
import sys
from setuptools import setup, find_packages
if 2 > len(sys.argv):
print("param error, please input 'python3 setup.py sdist bdist_wheel'")
exit(0)
try:
# Use setuptools if available, for install_requires (among other things).
import setuptools
from setuptools import setup
except ImportError:
setuptools = None
from distutils.core import setup
with open("obespoir/__init__.py") as f:
ns = {}
exec(f.read(), ns)
version = ns["version"]
setup(
name="obEspoir",
version=version,
keywords=("pip", "obEspoir", "game", "server", "frame", "distribute"),
description="a distribute game frame",
long_description="a distribute game frame",
license="MIT Licence",
url="https://gitee.com/jamon/obEspoir.git",
author="jamon",
author_email="jamonhe@foxmail.com",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=['ujson', 'pymongo', 'aiohttp', 'websockets', 'Crypto', 'pygame'],
python_requires='>=3.6'
)
Python
1
https://gitee.com/jamon/obEspoir.git
git@gitee.com:jamon/obEspoir.git
jamon
obEspoir
obEspoir
master

搜索帮助