-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from williamroot/master
Add setup.py
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env python | ||
# -*- coding:utf-8 -*- | ||
|
||
from setuptools import setup, find_packages | ||
|
||
classifiers = ["Development Status :: Beta", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 2.7", | ||
"Operating System :: OS Independent", | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
] | ||
|
||
long_description = open('README.md').read() | ||
|
||
setup(name='youtube-api', | ||
version='1.0', | ||
description=""" | ||
A basic Python wrapper for the Youtube Data API v3 ( Non-OAuth ). | ||
Designed to let devs easily fetch public data (Video, Channel, Playlists | ||
info) from Youtube.""", | ||
long_description=long_description, | ||
classifiers=classifiers, | ||
keywords='client to youtube api v3', | ||
author='Ronen Hayun', | ||
packages=find_packages(exclude=('doc', 'docs',)), | ||
include_package_data=True, | ||
) |