Skip to content

Commit

Permalink
fix wrong pypi name
Browse files Browse the repository at this point in the history
  • Loading branch information
delta4d committed May 19, 2017
1 parent 625c634 commit 0287168
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages

setup(
name = "douban album downloader",
name = "douban album dl",
version = "0.0.1",
description = "douban album downloader",
long_description = "douban album downloader",
Expand All @@ -14,5 +14,9 @@
license = "MIT",
scripts = ["bin/douban-album-dl"],
keywords = "douban dl",
packages = find_packages(exclude = ["tests"])
packages = find_packages(exclude = ["tests"]),
install_requires = [
"bs4",
"requests"
]
)

0 comments on commit 0287168

Please sign in to comment.