-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (24 loc) · 723 Bytes
/
setup.py
File metadata and controls
34 lines (24 loc) · 723 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
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
# Application name:
name="RMControl",
# Version number (initial):
version="1.0.1",
# Application author details:
author="Eric Magnuson",
author_email="eric@ericmagnuson.me",
# Packages
packages=find_packages(exclude=['tests*']),
# Include additional files into the package
include_package_data=True,
# Details
url="https://github.com/ericmagnuson/rmcontrol",
license="LICENSE.txt",
description="A python app to control an RM2 from BroadLink.",
long_description=open("readme.txt").read(),
# Dependent packages (distributions)
install_requires=[
"flask",
"broadlink"
],
)