diff --git a/README.md b/README.md index eddeee4..698ea6f 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,15 @@ It supports Discord V10 REST API and Gateway We are trying to make our library optimized. We are going to create really cool cache configuration, so don't worry about the RAM :) +--- +## Install MelisaPy + +NOTE: Currently, installation is only possible using GitHub + +```commandline +pip install git+https://github.com/MelisaDev/melisa +``` + --- ## Events Listening diff --git a/melisa/__init__.py b/melisa/__init__.py index 8c4f262..5a17256 100644 --- a/melisa/__init__.py +++ b/melisa/__init__.py @@ -12,3 +12,5 @@ __title__ = "Melisa" __description__ = "Cache-configurable module to interact with the Discord API." __author__ = "MelisaDev" __license__ = "MIT" +__version__ = '0.0.1a0' + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..65db5f4 --- /dev/null +++ b/setup.py @@ -0,0 +1,68 @@ +import re + +from setuptools import setup + + +extras_require = [] +requirements = [] + +with open('requirements.txt', encoding='utf-8') as file: + requirements = file.read().splitlines() + +with open('speed-requirements.txt', encoding='utf-8') as file: + extras_require = file.read().splitlines() + +with open('melisa/__init__.py', encoding='utf-8') as file: + version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', file.read(), re.MULTILINE).group(1) + +if version is None: + raise RuntimeError('Version is not set!') + +readme = '' + +with open('README.md', encoding='utf-8') as file: + readme = file.read() + + +packages = [ + 'melisa', + 'melisa.listeners', + 'melisa.models', + 'melisa.models.app', + 'melisa.models.guild', + 'melisa.models.message', + 'melisa.models.user', + 'melisa.utils', + 'melisa.core' +] + +setup( + name='melisa', + author='grey-cat, TheMisterSenpai', + url='https://github.com/MelisaDev/melisa', + version=version, + packages=packages, + license='MIT', + description='Cache-optimized Discord microframework for Python 3', + long_description=readme, + long_description_content_type="text/markdown", + include_package_data=True, + python_requires='>=3.8', + install_requires=requirements, + extras_require=extras_require, + classifiers=[ + "Development Status :: 1 - Development", + "License :: OSI Approved :: MIT License", + "Intended Audience :: Developers", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Topic :: Internet", + "Topic :: Software Development :: Libraries", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Utilities", + "Typing :: Typed", + ] +)