-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 1021 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='CustomCam',
version='0.0.2',
description='Extendable webcam customisation in Python.',
long_description=open("README.md", 'r').read(),
long_description_content_type="text/markdown",
author='Matt Ravenhall',
url='https://github.com/mattravenhall/CustomCam',
# package_dir={"CustomCam": "src"},
packages=['CustomCam'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video'
],
entry_points={
"console_scripts": [
'CustomCam=CustomCam.__main__:run'
]
},
install_requires=open('requirements.txt', 'r').readlines(),
python_requires='>=3.7',
)