mirror of
https://codeberg.org/reflect/reflect-client-python.git
synced 2025-09-14 01:23: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 #
|
# 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
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
|
# the "install_requires" array should also be updated when changing this
|
||||||
validators
|
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