-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 853 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 853 Bytes
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
from setuptools import setup
setup(
name='mastodon_archive',
version='1.0.0',
description="Utility for backing up your Mastodon content",
author="Alex Schroeder",
author_email="alex@gnu.org",
url='https://github.com/kensanata/mastodon-backup#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",
],
)