Skip to content

Commit

Permalink
Merge pull request #1 from williamroot/master
Browse files Browse the repository at this point in the history
Add setup.py
  • Loading branch information
rhayun committed Sep 4, 2015
2 parents b140dd2 + 3a145bb commit 1c6a78a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions setup.py
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,
)

0 comments on commit 1c6a78a

Please sign in to comment.