1
0
mirror of https://github.com/gryf/slack-backup.git synced 2025-12-17 03:20:25 +01:00

Added tox configuration

This commit is contained in:
2016-11-19 09:13:38 +01:00
parent e1adfd7a57
commit 25d10c1775
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
#!/usr/bin/env python3
"""
Setup for the slack-backup project
"""
from distutils.core import setup
setup(name="slack-backup",
packages=["slack_backup"],
version="0.0",
description="Make copy of slack converstaions",
author="Roman Dobosz",
author_email="gryf73@gmail.com",
url="https://github.com/gryf/slack-backup",
download_url="https://github.com/gryf/slack-backup",
keywords=["chat", "backup", "history", "slack"],
requires=["sqlalchemy", "slackclient"],
scripts=["scripts/slack-backup"],
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Database :: Front-Ends",
"Topic :: Communications :: Chat",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML"],
long_description=open("README.rst").read(),
options={'test': {'verbose': False,
'coverage': False}})