2 커밋 921ae3ec95 ... 67c6ff4ca8

작성자 SHA1 메시지 날짜
  RemixDev 67c6ff4ca8 Updated .gitignore and README.md 4 년 전
  RemixDev 165b160dcd Added version in __init__ 4 년 전
3개의 변경된 파일27개의 추가작업 그리고 1개의 파일을 삭제
  1. 22 1
      .gitignore
  2. 3 0
      README.md
  3. 2 0
      deezer/__init__.py

+ 22 - 1
.gitignore

@@ -2,6 +2,8 @@ __pycache__
 */__pycache__
 
 .DS_Store
+node_modules
+/dist
 
 # local env files
 /env/
@@ -9,6 +11,25 @@ __pycache__
 .env.local
 .env.*.local
 
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
+
+# Private configs
+/config.py
+/test.py
+
 #build files
 /build
-/dist
+/*egg-info
+updatePyPi.sh

+ 3 - 0
README.md

@@ -1,6 +1,9 @@
 # deezer-py
 A wrapper for all Deezer's APIs
 
+## Installing and using the library
+You can install this library with `pip install deezer-py`
+
 # License
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by

+ 2 - 0
deezer/__init__.py

@@ -3,6 +3,8 @@ requests = eventlet.import_patched('requests')
 from deezer.gw import GW
 from deezer.api import API
 
+__version__ = "0.0.1"
+
 class TrackFormats():
     """Number associtation for formats"""
     FLAC    = 9