File: setup.py

package info (click to toggle)
pyflic 2.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 128 kB
  • sloc: python: 818; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 502 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages


with open('README.md', 'r') as f:
    long_description = f.read()


setup(name='pyflic',
      version='2.0.4',
      description='Python library to connect to and interact with Flic buttons.',
      long_description=long_description,
      long_description_content_type='text/markdown',
      author='soldag',
      author_email='soeren_oldag@freenet.de',
      url='https://github.com/soldag/pyflic',
      license='MIT',
      packages=find_packages())