nficano commited on
Commit
68eac13
·
1 Parent(s): 92c1714

reverted back to setuptools. cleaned up setup.py.

Browse files
Files changed (1) hide show
  1. setup.py +21 -14
setup.py CHANGED
@@ -1,10 +1,13 @@
 
 
1
  import os
2
- from distutils.core import setup
 
 
 
 
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.11",
 
16
  author="Nick Ficano",
17
  author_email="nficano@gmail.com",
18
- description="A simple, yet versatile package for downloading YouTube videos.",
19
- license='The MIT License: http://www.opensource.org/licenses/mit-license.php',
20
- keywords="youtube downloader",
21
- url="https://github.com/NFicano/pytube",
22
- download_url="https://github.com/NFicano/pytube/tarball/0.1.11",
23
- packages=['pytube'],
 
 
 
24
  use_2to3=True,
25
  entry_points={
26
  "console_scripts": [
27
- "pytube = pytube:_main",
28
  ]},
29
- long_description=read('README.md'),
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",