-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (26 loc) · 1009 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
from setuptools import setup, Extension, find_packages
def readme():
with open('README.md') as f:
return f.read()
DESC = "WebRTC python unit tests inspired to '80s"
setup(name='videodrone',
version='0.9.9',
description=DESC,
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"],
url='https://github.com/peppelinux/videodrone',
author='Giuseppe De Marco',
author_email='[email protected]',
license="Apache 2.0",
packages=['videodrone', 'videodrone.drones'],
scripts=['videodrone'],
package_dir={"": "src"},
install_requires=[
'selenium>=3.0.0'
],
)