-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
39 lines (32 loc) · 1.13 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
import io
from setuptools import setup, find_packages
from imessage_reader import common
with io.open('README.md', 'rt', encoding='utf8') as f:
LONG_DESC = f.read()
setup(
name='imessage_reader',
version=common.VERSION,
license='MIT',
description='Fetch recipients and chat messages from the chat.db database.',
long_description=LONG_DESC,
long_description_content_type='text/markdown',
author='Bodo Schönfeld',
author_email='[email protected]',
url='https://github.com/niftycode/imessage_reader',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
packages=find_packages(exclude=('tests', 'docs')),
python_requires='>=3.8',
entry_points={
'console_scripts': ['imessage_reader=imessage_reader.cli:main'],
},
install_requires=['openpyxl'],
tests_require=['pytest'],
)