-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.33 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
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup
import os
PKG_NAME = 'tutubo'
def get_version():
""" Find the version of this skill"""
version_file = os.path.join(os.path.dirname(__file__), PKG_NAME, 'version.py')
major, minor, build, alpha = (None, None, None, None)
with open(version_file) as f:
for line in f:
if 'VERSION_MAJOR' in line:
major = line.split('=')[1].strip()
elif 'VERSION_MINOR' in line:
minor = line.split('=')[1].strip()
elif 'VERSION_BUILD' in line:
build = line.split('=')[1].strip()
elif 'VERSION_ALPHA' in line:
alpha = line.split('=')[1].strip()
if ((major and minor and build and alpha) or
'# END_VERSION_BLOCK' in line):
break
version = f"{major}.{minor}.{build}"
if int(alpha):
version += f"a{alpha}"
return version
setup(
name=PKG_NAME,
version=get_version(),
packages=[PKG_NAME,
PKG_NAME + ".pytube",
PKG_NAME + ".pytube.contrib"],
url='https://github.com/OpenJarbas/tutubo',
license='Apache',
author='jarbasAI',
install_requires=["bs4", "requests", "pytube", "ytmusicapi"],
author_email='[email protected]',
description='wrapper around pytube with some new functionality'
)