1
0
mirror of https://github.com/gryf/slack-backup.git synced 2025-12-18 12:00:22 +01:00

Small fixes, version bump, alpha stage, added emoji map.

This commit is contained in:
2016-11-26 17:55:33 +01:00
parent 832b76fc84
commit c8c1dd4bfe
6 changed files with 1918 additions and 33 deletions

View File

@@ -2,12 +2,15 @@
"""
Setup for the slack-backup project
"""
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="slack-backup",
packages=["slack_backup"],
version="0.1",
version="0.2",
description="Make copy of slack converstaions",
author="Roman Dobosz",
author_email="gryf73@gmail.com",
@@ -18,7 +21,7 @@ setup(name="slack-backup",
scripts=["scripts/slack-backup"],
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",