mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
Make new pypi build
This commit is contained in:
parent
341fb85b54
commit
0ef0acec6c
@ -1 +1 @@
|
||||
__version__ = "0.1.0.dev25"
|
||||
__version__ = "0.1.0.dev26"
|
||||
|
@ -1,5 +1,4 @@
|
||||
#mautrix
|
||||
https://github.com/tulir/mautrix-python/tarball/master#egg=mautrix
|
||||
mautrix
|
||||
aiohttp
|
||||
SQLAlchemy
|
||||
alembic
|
||||
|
5
setup.py
5
setup.py
@ -1,4 +1,5 @@
|
||||
import setuptools
|
||||
import glob
|
||||
import os
|
||||
|
||||
path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "maubot", "__meta__.py")
|
||||
@ -21,7 +22,7 @@ setuptools.setup(
|
||||
packages=setuptools.find_packages(),
|
||||
|
||||
install_requires=[
|
||||
"mautrix>=0.4.dev70,<0.5",
|
||||
"mautrix>=0.4.dev72,<0.5",
|
||||
"aiohttp>=3.0.1,<4",
|
||||
"SQLAlchemy>=1.2.3,<2",
|
||||
"alembic>=1.0.0,<2",
|
||||
@ -54,6 +55,8 @@ setuptools.setup(
|
||||
""",
|
||||
data_files=[
|
||||
(".", ["example-config.yaml"]),
|
||||
("alembic", ["alembic/env.py"]),
|
||||
("alembic/versions", glob.glob("alembic/versions/*.py")),
|
||||
],
|
||||
package_data={
|
||||
"maubot": ["management/frontend/build/*", "management/frontend/build/static/css/*",
|
||||
|
Loading…
Reference in New Issue
Block a user