Skip to content

Commit aa62324

Browse files
committed
Prepare for the first release.
1 parent 1b6d0df commit aa62324

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

flit.ini

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,15 @@ author = Matthias Bussonnier
44
author-email = [email protected]
55
home-page = https://github.com/Carreau/meeseeksbox
66
classifiers = License :: OSI Approved :: MIT License
7+
requires-python = >=3.4
8+
description-file = readme.md
9+
requires = tornado
10+
requests
11+
pyjwt
12+
gitpython
13+
there
14+
mock
15+
cryptography
16+
friendlyautopep8
17+
yieldbreaker
718

meeseeksbox/__init__.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1+
"""
2+
MeeseeksBox
3+
4+
Base of a framework to write stateless bots on GitHub.
5+
6+
Mainly writte to use the (currently Beta) new GitHub "Integration" API, and
7+
handle authencation of user.
8+
"""
9+
110
import os
211
import base64
312
from .core import Config
413
from .core import MeeseeksBox
514

6-
__version__ = '0.0.1'
15+
version_info = (0,0,1)
16+
17+
__version__ = '.'.join(map(str,version_info))
718

819
def load_config_from_env():
920
"""

0 commit comments

Comments
 (0)