-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.26 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
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
# this grabs the requirements from requirements.txt
install_requires = [i.strip() for i in open("requirements.txt").readlines()]
VERSION = '1.0.5'
DESCRIPTION = 'Task/job/rule engine, primarily intended for use in a smarthome environment.'
# Setting up
setup(
author="Rosenloecher-IT (Raul Rosenlöcher)",
author_email="<github@rosenloecher-it.de>",
description=DESCRIPTION,
install_requires=install_requires,
keywords=['smarthome', 'mqtt', 'rule-engine', 'task-engine'],
long_description=long_description,
long_description_content_type="text/markdown",
name="worker-bunch",
packages=find_packages(),
url='https://github.com/rosenloecher-it/worker-bunch',
version=VERSION,
classifiers=[ # https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
'License :: OSI Approved :: MIT License',
]
)