forked from qwertyquerty/pypresence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (44 loc) · 1.95 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
from setuptools import setup
import lynxpresence
# 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='lynxpresence',
author='C0rn3j',
url='https://github.com/C0rn3j/lynxpresence',
version=lynxpresence.__version__,
packages=['lynxpresence'],
python_requires='>=3.9',
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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Typing :: Typed',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: Communications :: Chat',
'Framework :: AsyncIO',
]
)