-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (34 loc) · 1.15 KB
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
from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
version = '1.2.6'
install_requires = [
'mss',
'configparser',
'easydict',
]
readme = open("README.md").read()
setup(name='acapture',
version=version,
description="Async web camera/video/images/screenshot capturing library.",
long_description="https://github.com/aieater/python_acapture\n\n"+readme,
long_description_content_type='text/markdown',
classifiers=(
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
keywords='opencv python screenshot video mp4 capture async web camera image',
author='Pegara, Inc.',
author_email='info@pegara.com',
url='https://github.com/aieater/python_acapture',
license='MIT',
packages=['acapture'],
zip_safe=False,
install_requires=install_requires,
entry_points={}
)