File size: 1,320 Bytes
68eac13 4eb9602 68eac13 4eb9602 68eac13 4eb9602 0275bdb 4eb9602 0275bdb 68eac13 0275bdb 68eac13 0275bdb 4e78f3b 68eac13 4e78f3b 68eac13 4eb9602 59fde0c f763abc 4eb9602 a39264c 4eb9602 8e1f892 4eb9602 |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
#!/usr/bin/env python
import os
from setuptools import setup
packages = [
'pytube'
]
requires = []
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pytube",
version="0.1.12",
description="",
author="Nick Ficano",
author_email="nficano@gmail.com",
url="http://pytube.nickficao.com",
packages=packages,
package_data={'': ['LICENSE']},
package_dir={'pytube': 'pytube'},
download_url="https://github.com/NFicano/pytube/tarball/0.1.12",
include_package_data=True,
install_requires=requires,
license=open("LICENSE").read(),
use_2to3=True,
entry_points={
"console_scripts": [
"pytube=pytube:_main",
]},
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.0",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)
|