File: setup.py

package info (click to toggle)
pykmtronic 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 108 kB
  • sloc: python: 151; makefile: 6
file content (31 lines) | stat: -rw-r--r-- 939 bytes parent folder | download
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
from setuptools import setup, find_packages
import pykmtronic

long_description = open('README.md').read()

setup(
    name='pykmtronic',
    version=pykmtronic.__version__,
    license='MIT License',
    url='https://github.com/dgomes/pykmtronic',
    author='Diogo Gomes',
    author_email='diogogomes@gmail.com',
    description='Python library to interface with KM Tronic Web Relays',
    long_description=long_description,
    long_description_content_type='text/markdown',
    packages=['pykmtronic'],
    zip_safe=True,
    platforms='any',
    install_requires=[
        'aiohttp',
        'lxml',
      ],
    classifiers=[
        'License :: OSI Approved :: MIT License',
        'Intended Audience :: Developers',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Topic :: Software Development :: Libraries :: Python Modules'
    ]
)