forked from harrypython/itsagramlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1.04 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
import setuptools
project_homepage = "https://github.com/harrypython/itsagramlive"
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
dependencies = f.read().splitlines()
setuptools.setup(
name='ItsAGramLive',
version='1.2.1',
packages=setuptools.find_packages(),
url='https://github.com/harrypython/itsagramlive',
license='GPL-3.0',
author='Harry Python',
author_email='[email protected]',
description='Its A Gram Live is a Python script that create a Instagram Live and provide you a rtmp server '
'and stream key to streaming using sofwares like OBS-Studio.',
project_urls={
"Example": (project_homepage + "/blob/master/live_broadcast.py"),
"Bug Reports": (project_homepage + "/issues"),
"Buy me a coffee": "https://www.buymeacoffee.com/harrypython",
},
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.6',
install_requires=dependencies,
)