forked from Oderjunkie/mafapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 991 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
from distutils.core import setup
setup(
name = 'mafapi',
packages = ['mafapi'],
version = '0.2',
license='GNU GPLv3',
description = 'A simple python interfact for mafia.gg to create bots and clients.',
author = 'Otesunkie',
author_email = 'trickytests@gmail.com',
url = 'https://github.com/Oderjunkie/mafapi',
download_url = 'https://github.com/Oderjunkie/mafapi/archive/refs/tags/v_012.tar.gz', # I explain this later on
keywords = ['mafia', 'bot', 'connection', 'async', 'client'],
install_requires=[ # I get to this in a second
'aiohttp',
'asyncinit',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
)