-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
32 lines (30 loc) · 1.01 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='mastodon_archive',
version='1.4.4',
description="Utility for backing up your Mastodon content",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alex Schroeder",
author_email="[email protected]",
url='https://github.com/kensanata/mastodon-archive#mastodon-archive',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications',
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'Development Status :: 5 - Production/Stable',
],
packages=["mastodon_archive"],
entry_points={
"console_scripts": ["mastodon-archive=mastodon_archive:main"]
},
install_requires=[
"mastodon.py",
"progress",
"html2text",
],
)