-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 755 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
with open('requirements.txt') as fp:
install_requires = fp.read()
setup(
name='remote_event_bundle',
packages=find_packages(),
version='1.7',
description='Remote events support for applauncher',
author='Alvaro Garcia Gomez',
author_email='[email protected]',
url='https://github.com/applauncher-team/remote_event_bundle',
download_url='https://github.com/applauncher-team/remote_event_bundle/archive/master.zip',
keywords=['applauncher', 'events', 'remote', 'redis', 'kafka', 'mqtt'],
classifiers=['Topic :: Adaptive Technologies', 'Topic :: Software Development', 'Topic :: System',
'Topic :: Utilities'],
install_requires=install_requires
)