-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.21 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
import setuptools
setuptools.setup(
name="sappservice",
version=0.4,
url="https://github.com/TurBoss/matrix-spring-appservice",
author="TurBoss",
author_email="[email protected]",
description="A Python 3 asyncio Matrix SpringRTS sappservice.",
long_description=open("README.md").read(),
packages=setuptools.find_packages(),
install_requires=[
"commonmark",
"mautrix",
"mautrix-appservice",
"matrix_client",
"sqlalchemy",
"asyncblink",
"ruamel.yaml",
"aiohttp",
],
dependency_links=['http://github.com/TurBoss/asyncspring/tarball/master'],
extras_require={
},
python_requires="~=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU GPL v3",
"Topic :: Communications :: Chat",
"Framework :: AsyncIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points="""
[console_scripts]
sappservice=sappservice.__main__:main
""",
)