-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os.path import join, dirname
setup(
name='sylogger',
version='0.2',
author='Pavel Kardash',
author_email='[email protected]',
license='APACHE 2.0',
packages=find_packages(),
description='Conversation logger application service for matrix-org/synapse',
long_description=open(join(dirname(__file__), 'README.rst')).read(),
install_requires=[
'Flask>=1.0.0',
'waitress',
'configparser'
],
data_files = [
("", ["LICENSE"]),
("/lib/systemd/system", ["contrib/systemd/matrix-sylogger.service"]),
("/opt/synapse", ["sylogger.conf", "as_sylogger.yaml"])
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Framework :: Flask',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Topic :: Communications :: Chat'
]
)