-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 1.18 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="chrysalis",
version="1.0.0",
author="Igor Rendulic",
description="Chrysalis Cloud SDK enabling AI in the cloud from live video streams",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/chryscloud/chrys-cloud-sdk-python.git",
packages=find_packages(),
py_modules=['chrysalis'],
keyword="rtmp video audio live stream camera surveillance",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Conversion'
],
install_requires=['redis', 'av', "numpy"],
python_requires='>=3.6',
)