-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
55 lines (47 loc) · 2.03 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
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
import pypresence
# Use README for the PyPI page
with open('README.md') as f:
long_description = f.read()
# https://setuptools.readthedocs.io/en/latest/setuptools.html
setup(name='pypresence',
author='qwertyquerty',
url='https://github.com/qwertyquerty/pypresence',
version=pypresence.__version__,
packages=['pypresence'],
python_requires='>=3.8',
platforms=['Windows', 'Linux', 'OSX'],
zip_safe=True,
license='MIT',
description='Discord RPC client written in Python',
long_description=long_description,
# PEP 566, PyPI Warehouse, setuptools>=38.6.0 make markdown possible
long_description_content_type='text/markdown',
keywords='discord rich presence pypresence rpc api wrapper gamers chat irc',
# Used by PyPI to classify the project and make it searchable
# Full list: https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: Communications :: Chat',
'Framework :: AsyncIO',
]
)
print(r"""
___ _ _ ___ ____ ____ ____ ____ _ _ ____ ____
|__] \_/ |__] |__/ |___ [__ |___ |\ | | |___
| | | | \ |___ ___] |___ | \| |___ |___
""")