-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1.46 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1.46 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="robobopy_videostream", # This is the name of the package
version="1.1.0", # The release version
author="The Robobo Project", # Full name of the author
author_email="info@theroboboproject.com",
description="Robobo video streaming library",
long_description=long_description, # Long description read from the the readme file
long_description_content_type="text/markdown",
repository_url="https://github.com/mintforpeople/robobo-python-video-stream",
#packages=setuptools.find_packages(), # List of all python modules to be installed
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
], # Information to filter the project on PyPi website
python_requires='>=3.6', # Minimum version requirement of the package
py_modules=["robobopy_videostream"], # Name of the python package
packages=setuptools.find_packages('src'),
package_dir={'':'src'}, # Directory of the source code of the package
#packages=setuptools.find_packages(include=['.*']),
install_requires=['robobopy','opencv-python','pillow'] # Install other dependencies if any
)