mirror of
https://codeberg.org/reflect/reflect-client-python.git
synced 2025-09-13 17:13:41 +02:00
feat: add pypi package
This commit is contained in:
parent
c835a73ec0
commit
7bfd7198af
4 changed files with 16 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,5 +1,7 @@
|
|||
# Bootstrapping #
|
||||
#################
|
||||
/dist
|
||||
/reflect_client.egg-info
|
||||
/node_modules
|
||||
/public/hot
|
||||
/public/storage
|
||||
|
@ -14,7 +16,6 @@ npm-debug.log
|
|||
yarn-error.log
|
||||
public/robots.txt
|
||||
|
||||
|
||||
# OS generated files #
|
||||
######################
|
||||
.DS_Store
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
# the "install_requires" array should also be updated when changing this
|
||||
validators
|
13
setup.py
Normal file
13
setup.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name = "reflect-client",
|
||||
version = "1.0.0",
|
||||
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 = find_packages(),
|
||||
# The requirement.txt file should also be updated when changing this
|
||||
install_requires = ["validators"]
|
||||
)
|
0
src/__init__.py
Normal file
0
src/__init__.py
Normal file
Loading…
Add table
Reference in a new issue