feat: add pypi package

This commit is contained in:
Victor Westerlund 2023-05-01 17:17:19 +02:00
parent c835a73ec0
commit 7bfd7198af
4 changed files with 16 additions and 1 deletions

3
.gitignore vendored
View file

@ -1,5 +1,7 @@
# Bootstrapping # # Bootstrapping #
################# #################
/dist
/reflect_client.egg-info
/node_modules /node_modules
/public/hot /public/hot
/public/storage /public/storage
@ -14,7 +16,6 @@ npm-debug.log
yarn-error.log yarn-error.log
public/robots.txt public/robots.txt
# OS generated files # # OS generated files #
###################### ######################
.DS_Store .DS_Store

View file

@ -1 +1,2 @@
# the "install_requires" array should also be updated when changing this
validators validators

13
setup.py Normal file
View 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
View file