-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (18 loc) · 695 Bytes
/
setup.py
File metadata and controls
18 lines (18 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
setup(
name = 'hypnolog',
packages = ['hypnolog'],
version = '0.1.0',
description = 'Python wrapper for quick logging using HypnoLog',
author = 'SimonLdj',
author_email = 'simon.ldj@gmail.com',
url = 'https://github.com/SimonLdj/hypnolog-python',
download_url = 'https://github.com/SimonLdj/hypnolog-python/archive/v0.1.0.tar.gz',
keywords = ['hypnolog', 'debugging', 'debug', 'log', 'logging', 'console', 'visualization'],
classifiers = [],
install_requires=[
'requests>=2.18.4',
'jsonpickle>=0.9.6',
],
license='MIT',
)