-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (25 loc) · 808 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
from setuptools import setup, find_packages
VERSION = '0.2.2'
DESCRIPTION = 'A Python wrapper for Multiversus API'
classifiers = [
'Development Status :: 3 - Alpha ',
'Intended Audience :: Education',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='mulpyversus',
version='0.2.2',
description='A Python wrapper for Multiversus API',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/AshladBP/MulpyVersus',
author='Ashlad',
author_email='contact@ashlad.dev',
license='MIT',
classifiers=classifiers,
keywords='mulpyversus multiversus api python',
packages=find_packages(),
install_requires=['']
)