-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (35 loc) · 1.15 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
README = f.read()
exec(compile(open('youtube_sm/version.py').read(),
'youtube_sm/version.py', 'exec'))
setup(
name='youtube_sm',
version=__version__,
url='https://github.com/sawyerf/youtube-sm',
author='Sawyerf',
author_email='[email protected]',
description='Youtube subscription manager',
long_description_content_type='text/markdown',
long_description=README,
keywords='youtube subscription api manager html',
license='MLP-2.0',
packages=find_packages(include=[
'youtube_sm', 'youtube_sm.*',
]),
classifiers=[
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Environment :: Console',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only'
],
entry_points={
'console_scripts': ['youtube-sm = youtube_sm.main:main']
}
)