File: setup.py

package info (click to toggle)
pyatag 0.3.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168 kB
  • sloc: python: 503; sh: 4; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Setup script."""
from setuptools import setup

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

setup(
    name="pyatag",
    license="MIT",
    url="https://github.com/MatsNl/pyatag",
    author="@MatsNL",
    description="Python module to talk to Atag One.",
    packages=["pyatag"],
    zip_safe=True,
    platforms="any",
    install_requires=list(val.strip() for val in open("requirements.txt")),
    classifiers=[
        "Intended Audience :: Developers",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Topic :: Software Development :: Libraries :: Python Modules",
    ],
)