Skip to content

Commit 03fee72

Browse files
committed
Publish v0.0.1 to PyPi
1 parent 3c23f64 commit 03fee72

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

Diff for: loguru/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Loguru")

Diff for: setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

Diff for: setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name = 'loguru',
5+
packages = ['loguru'],
6+
version = '0.0.1',
7+
description = 'Logging as an automatism',
8+
author = 'Delgan',
9+
author_email = '[email protected]',
10+
url = 'https://github.com/Delgan/loguru',
11+
download_url = 'https://github.com/Delgan/loguru/archive/0.0.1.tar.gz',
12+
keywords = ['logging'],
13+
classifiers = [],
14+
)

0 commit comments

Comments
 (0)