Skip to content

Commit

Permalink
Publish v0.0.1 to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
Delgan committed Sep 4, 2017
1 parent 3c23f64 commit 03fee72
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions loguru/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Loguru")
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from distutils.core import setup

setup(
name = 'loguru',
packages = ['loguru'],
version = '0.0.1',
description = 'Logging as an automatism',
author = 'Delgan',
author_email = 'delgan.py@gmail.com',
url = 'https://github.com/Delgan/loguru',
download_url = 'https://github.com/Delgan/loguru/archive/0.0.1.tar.gz',
keywords = ['logging'],
classifiers = [],
)

0 comments on commit 03fee72

Please sign in to comment.