File: setup.py

package info (click to toggle)
progettihwsw 0.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: python: 253; makefile: 6
file content (38 lines) | stat: -rw-r--r-- 1,183 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
32
33
34
35
36
37
38
import os
import sys

import setuptools


def read_file(file):
    with open(os.path.join(os.path.dirname(__file__), file)) as readable:
        return readable.read()


README = read_file("README.md")

setuptools.setup(
    name="ProgettiHWSW",
    version="0.1.3",
    long_description="\n\n".join([README]),
    long_description_content_type="text/markdown",
    description="Controls ProgettiHWSW relay boards.",
    url="http://github.com/ardaseremet/progettihwsw",
    download_url="http://github.com/ardaseremet/progettihwsw/tarball/0.1.3",
    author="Arda Seremet",
    author_email="ardaseremet@outlook.com",
    license="MIT",
    packages=setuptools.find_packages(),
    install_requires=["aiohttp", "lxml"],
    zip_safe=False,
    classifiers=[
        "License :: OSI Approved :: MIT License",
        "Development Status :: 5 - Production/Stable",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Intended Audience :: Telecommunications Industry",
        "Intended Audience :: Information Technology",
        "Intended Audience :: End Users/Desktop",
        "Intended Audience :: Legal Industry",
    ],
)