forked from mautrix/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (39 loc) · 1.25 KB
/
setup.py
File metadata and controls
47 lines (39 loc) · 1.25 KB
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
import setuptools
from mautrix import __version__
setuptools.setup(
name="mautrix",
version=__version__,
url="https://github.com/mautrix/python",
author="Tulir Asokan",
author_email="tulir@maunium.net",
description="A Python 3 asyncio Matrix framework.",
long_description=open("README.rst").read(),
packages=setuptools.find_packages(),
install_requires=[
"aiohttp>=3,<4",
"attrs>=18.1.0",
"yarl>=1,<2",
],
extras_require={
"detect_mimetype": ["python-magic>=0.4.15,<0.5"],
"test": ["pytest"],
},
python_requires="~=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Topic :: Communications :: Chat",
"Framework :: AsyncIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
package_data={
"mautrix": ["py.typed"],
"mautrix.types.event": ["type.pyi"],
"mautrix.util": ["opt_prometheus.pyi"],
"mautrix.util.formatter": ["html_reader.pyi"],
},
)