File: setup.py

package info (click to toggle)
python-connio 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 72 kB
  • sloc: python: 49; makefile: 7
file content (40 lines) | stat: -rw-r--r-- 1,263 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
39
40
# -*- coding: utf-8 -*-

"""The setup script."""

import sys
from setuptools import setup, find_packages

with open("README.md") as f:
    description = f.read()

setup(
    name="connio",
    author="Jose Tiago Macara Coutinho",
    author_email="coutinhotiago@gmail.com",
    classifiers=[
        "Development Status :: 2 - Pre-Alpha",
        "Intended Audience :: Developers",
        "Natural Language :: English",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
    ],
    description="Concurrency agnostic socket API",
    license="GPLv3+",
    long_description=description,
    long_description_content_type="text/markdown",
    keywords="socket, tcp, ser2net, serial, rs232, rfc2217, asyncio",
    packages=find_packages(),
    install_requires=["serialio>=2.2", "sockio>=0.11"],
    url="https://tiagocoutinho.github.io/connio/",
    project_urls={
        "Documentation": "https://tiagocoutinho.github.io/connio/",
        "Source": "https://github.com/tiagocoutinho/connio/",
    },
    version="0.2.0",
    python_requires=">=3.5",
    zip_safe=True,
)