File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,15 @@ author = Matthias Bussonnier
4455home-page = https://github.com/Carreau/meeseeksbox
66classifiers = 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
Original file line number Diff line number Diff line change 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+
110import os
211import base64
312from .core import Config
413from .core import MeeseeksBox
514
6- __version__ = '0.0.1'
15+ version_info = (0 ,0 ,1 )
16+
17+ __version__ = '.' .join (map (str ,version_info ))
718
819def load_config_from_env ():
920 """
You can’t perform that action at this time.
0 commit comments