-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (21 loc) · 845 Bytes
/
setup.py
File metadata and controls
executable file
·22 lines (21 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='matrixcli',
version='0.1',
description='command line matrix client',
long_description='for more info https://git.saadnpq.com/saad/matrixcli',
long_description_content_type="text/plain",
author='saadnpq',
author_email='saad@saadnpq.com',
url='https://git.saadnpq.com/saad/matrixcli',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications :: Chat',
'Topic :: Communications :: Conferencing',
'Operating System :: POSIX :: Linux',
],
keywords='chat matrix command line',
data_files=[('/etc/matrixcli', ['config.py']),('/lib/systemd/user', ['matrixcli.service'])],
scripts=['matrixcli']
)