File: setup.py

package info (click to toggle)
aqipy 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: python: 110; makefile: 6; sh: 2
file content (23 lines) | stat: -rw-r--r-- 722 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
from setuptools import setup

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    name="aqipy",
    version="0.4.0",
    author="Dan O'Meara",
    author_email="omeara.dan@gmail.com",
    description="A simple CLI to get live Air Quality Indices",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/danoscarmike/aqipy",
    packages=["aqipy"],
    entry_points={"console_scripts": ["aqipy = aqipy.__main__:main"]},
    install_requires=["click", "requests",],
    classifiers=[
        "Programming Language :: Python :: 3",
        "Development Status :: 3 - Alpha",
        "License :: OSI Approved :: MIT License",
    ],
)