-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
28 lines (24 loc) · 959 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,
)