-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.46 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
47
from __future__ import annotations
from setuptools import setup
with open('./README.md') as f:
long_description = f.read()
setup(
name='sdbus-accounts',
description=('python-sdbus binds for freedesktop.org AccountsService'),
long_description=long_description,
long_description_content_type='text/markdown',
version='0.1.0',
url='https://github.com/sabedevops/python-sdbus-accounts',
author='sabedevops',
author_email='[email protected]',
license='LGPL-2.1-or-later',
keywords='accounts dbus linux freedesktop',
project_urls={
'Documentation': 'https://github.com/sabedevops/python-sdbus-accounts/blob/master/README.md',
'Source': 'https://github.com/sabedevops/python-sdbus-accounts/',
'Tracker': 'https://github.com/sabedevops/python-sdbus-accounts/issues/',
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
(
'License :: OSI Approved :: '
'GNU Lesser General Public License v2 or later (LGPLv2+)'
),
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=[
'sdbus_async.accounts'
],
package_data={
'sdbus_async.accounts': [
'py.typed',
]
},
python_requires='>=3.7',
install_requires=[
'sdbus>=0.8rc2',
],
)