File: setup.py

package info (click to toggle)
python-simplehound 0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,016 kB
  • sloc: python: 647; makefile: 7; sh: 5
file content (24 lines) | stat: -rw-r--r-- 675 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
from setuptools import setup, find_packages

VERSION = "0.6"

REQUIRES = ["requests"]

setup(
    name="simplehound",
    version=VERSION,
    url="https://github.com/robmarkcole/simplehound",
    author="Robin Cole",
    author_email="robmarkcole@gmail.com",
    description="Unofficial python API for Sighthound",
    install_requires=REQUIRES,
    packages=find_packages(exclude=["tests", "tests.*"]),
    license="Apache License, Version 2.0",
    python_requires=">=3.6",
    classifiers=[
        "Intended Audience :: Developers",
        "Natural Language :: English",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
    ],
)