reverted back to setuptools. cleaned up setup.py.
Browse files
setup.py
CHANGED
@@ -1,10 +1,13 @@
|
|
|
|
|
|
1 |
import os
|
2 |
-
from
|
|
|
|
|
|
|
|
|
3 |
|
4 |
-
|
5 |
-
PyTube
|
6 |
-
-------
|
7 |
-
"""
|
8 |
|
9 |
|
10 |
def read(fname):
|
@@ -12,21 +15,25 @@ def read(fname):
|
|
12 |
|
13 |
setup(
|
14 |
name="pytube",
|
15 |
-
version="0.1.
|
|
|
16 |
author="Nick Ficano",
|
17 |
author_email="nficano@gmail.com",
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
download_url="https://github.com/NFicano/pytube/tarball/0.1.
|
23 |
-
|
|
|
|
|
|
|
24 |
use_2to3=True,
|
25 |
entry_points={
|
26 |
"console_scripts": [
|
27 |
-
"pytube
|
28 |
]},
|
29 |
-
long_description=
|
30 |
classifiers=[
|
31 |
"Development Status :: 4 - Beta",
|
32 |
"Environment :: Console",
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
+
|
3 |
import os
|
4 |
+
from setuptools import setup
|
5 |
+
|
6 |
+
packages = [
|
7 |
+
'pytube'
|
8 |
+
]
|
9 |
|
10 |
+
requires = []
|
|
|
|
|
|
|
11 |
|
12 |
|
13 |
def read(fname):
|
|
|
15 |
|
16 |
setup(
|
17 |
name="pytube",
|
18 |
+
version="0.1.12",
|
19 |
+
description="",
|
20 |
author="Nick Ficano",
|
21 |
author_email="nficano@gmail.com",
|
22 |
+
url="http://pytube.nickficao.com",
|
23 |
+
packages=packages,
|
24 |
+
package_data={'': ['LICENSE']},
|
25 |
+
package_dir={'pytube': 'pytube'},
|
26 |
+
download_url="https://github.com/NFicano/pytube/tarball/0.1.12",
|
27 |
+
include_package_data=True,
|
28 |
+
install_requires=requires,
|
29 |
+
license=open("LICENSE").read(),
|
30 |
+
|
31 |
use_2to3=True,
|
32 |
entry_points={
|
33 |
"console_scripts": [
|
34 |
+
"pytube=pytube:_main",
|
35 |
]},
|
36 |
+
long_description=open('README.md').read(),
|
37 |
classifiers=[
|
38 |
"Development Status :: 4 - Beta",
|
39 |
"Environment :: Console",
|