forked from GlobalRadio/youtube-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.07 KB
/
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
29
30
#!/usr/bin/env python
from setuptools import setup
from youtube_api import VERSION
setup(name='youtube_api',
version=VERSION,
url='https://github.com/GlobalRadio/youtube-api-wrapper',
author="Alessandro De Noia - Global Radio",
author_email="[email protected]",
description="A (work in progress) Python YouTube API Wrapper.",
long_description=open('README.rst').read(),
keywords="YouTube, Api",
license=open('LICENSE').read(),
platforms=['linux'],
packages=('youtube_api', ),
include_package_data=True,
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=[
'requests>=2.6'],
)