-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (29 loc) · 873 Bytes
/
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
31
import setuptools
from distutils.core import setup
setup(
name='ms_api',
packages=[
'ms',
'ms_tournament',
],
version='0.10.275',
description='Python wrapper for the Mahjong Soul (Majsoul) Protobuf objects. It allows to use their API.',
long_description='',
author='Nihisil',
author_email='[email protected]',
url='https://github.com/MahjongRepository/mahjong_soul_api',
install_requires=[
'protobuf',
'websockets',
'aiohttp',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)