-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
35 lines (31 loc) · 1.03 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
from pathlib import Path
from setuptools import find_packages, setup
VERSION = '0.0.6.dev1'
this_dir = Path(__file__).parent
long_description = this_dir.joinpath('README.md').read_text()
requirements = this_dir.joinpath('requirements.txt').read_text()
setup(
name="streamyard-downloader",
version=VERSION,
description="Download Past Broadcast from StreamYard",
keywords="streamyard downloader scrapper",
url="https://github.com/gabubellon/streamyard-downloader",
author="Gabriel (Gabu) Bellon",
author_email="gabubellon@gmail.com",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.8",
project_urls={
"Source": "https://github.com/gabubellon/streamyard-downloader",
},
entry_points={
'console_scripts': [
"streamyard-downloader = streamyard_down.__main__:main"
]
}
)