-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (37 loc) · 1.35 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import find_packages, setup
from codecs import open
from os import path
version = '1.0.1'
install_requires = ['aiohttp', 'irc3', 'osuapi']
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gumiyabot',
version=version,
description='Standalone Twitch + Bancho IRC bot for handling osu! beatmap requests',
long_description=long_description,
url='https://github.com/pmrowla/gumiyabot',
author='Peter Rowlands',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'Topic :: Games/Entertainment',
'Topic :: Communications :: Chat :: Internet Relay Chat',
],
keywords='osu twitch gumiya',
packages=find_packages(exclude=['docs', 'tests']),
include_package_data=True,
entry_points={
'console_scripts': ['gumiyabot = gumiyabot.__main__:main'],
},
install_requires=install_requires,
)