-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (32 loc) · 1.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
import pyedurov2
setup(
name='pyedurov2',
version=pyedurov2.__version__,
description='Server package for Edu-ROV hardware v0.7',
long_description='',
url = 'https://github.com/simtind/edu-rover2-server',
project_urls={
'Source': 'https://github.com/simtind/edu-rover2-server',
'Tracker': 'https://github.com/simtind/edu-rover2-server/issues',
},
author='Simen August Tinderholt',
author_email='[email protected]',
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
],
keywords='ROV education',
install_requires=['picamera', 'sense-hat', 'pyserial-asyncio', 'asyncio', 'psutil', 'websockets', 'aiortc', 'aiohttp'],
packages=find_packages(),
package_data={
'pyedurov2.system': ['*.service']
},
entry_points={
'console_scripts': [
'pyedurov2 = pyedurov2.server:run',
],
},
)