forked from baseapp/SwarmSense-IoT-Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 727 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 727 Bytes
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
# This file is part of SwarmSense IoT Platform
# Copyright (c) 2018, Baseapp Systems And Softwares Private Limited
# Authors: Gopal Lal
#
# License: www.baseapp.com/swarmsense-whitelabel-iot-platoform
"""Setup application"""
from setuptools import setup, find_packages
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
version = __import__('snms').get_version()
setup(
name='snms',
version=version,
author='BaseApp Systems',
author_email='gopal@baseapp.com',
packages=PACKAGES,
include_package_data=True,
install_requires=[
'flask',
],
entry_points={
'console_scripts': {'snms = snms.cli.core:cli'},
'pytest11': {'snms = snms.testing.pytest_plugin'},
},
)