mirror of
https://codeberg.org/reflect/reflect-client-python.git
synced 2025-09-13 17:13:41 +02:00
13 lines
No EOL
529 B
Python
13 lines
No EOL
529 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = "reflect-client",
|
|
version = "1.1.2",
|
|
description = "Python library for communicating with an API built with Reflect over HTTP or UNIX sockets",
|
|
author = "Victor Westerlund",
|
|
author_email = "victor.vesterlund@gmail.com",
|
|
url = "https://github.com/victorwesterlund/reflect-client-python",
|
|
packages = ["reflect_client"],
|
|
# The requirement.txt file should also be updated when changing this
|
|
install_requires = ["validators", "requests"]
|
|
) |