mirror of
https://codeberg.org/reflect/reflect-client-python.git
synced 2025-09-14 09:33:41 +02:00
fix: module import (#2)
This commit is contained in:
parent
b13d4aa53a
commit
b028980a79
3 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -2,12 +2,12 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "reflect-client",
|
name = "reflect-client",
|
||||||
version = "1.0.0",
|
version = "1.0.1",
|
||||||
description = "Python library for communicating with an API built with Reflect over HTTP or UNIX sockets",
|
description = "Python library for communicating with an API built with Reflect over HTTP or UNIX sockets",
|
||||||
author = "Victor Westerlund",
|
author = "Victor Westerlund",
|
||||||
author_email = "victor.vesterlund@gmail.com",
|
author_email = "victor.vesterlund@gmail.com",
|
||||||
url = "https://github.com/victorwesterlund/reflect-client-python",
|
url = "https://github.com/victorwesterlund/reflect-client-python",
|
||||||
packages = find_packages(),
|
packages = ["reflect_client"],
|
||||||
# The requirement.txt file should also be updated when changing this
|
# The requirement.txt file should also be updated when changing this
|
||||||
install_requires = ["validators"]
|
install_requires = ["validators"]
|
||||||
)
|
)
|
Loading…
Add table
Reference in a new issue