-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.49 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.49 KB
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
47
48
49
50
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='friskby-controlpanel',
version='0.8.4',
description='Friskby device control panel',
long_description=long_description,
url='https://github.com/FriskByBergen/python-friskby-controlpanel',
author='FriskBy Bergen',
author_email='jonas@drange.net',
license='GNU General Public License, Version 3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', # noqa
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='friskby bergen frisk by rpiparticle a-small-code',
packages=find_packages(exclude=['tests']),
provides=['friskby_controlpanel'],
include_package_data=True,
# Note that we require that dbus-python is installed on the system, but if
# we require it here, this package becomes architecture dependent.
install_requires=[
'friskby>=0.72.1',
'flask',
'rpiparticle>=0.9.2',
'Flask-WTF',
'requests'
],
test_suite='tests',
tests_require=['pylint'],
data_files=[
(
'./bin',
[
'bin/fby_init'
]
)
]
)