Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 3fe727e

Browse files
committed
add setup
1 parent be37c12 commit 3fe727e

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
mljar-api-python
2+
================
3+
4+
This is a python wrapper over MLJAR API.

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
from setuptools import setup, find_packages
2+
from codecs import open
3+
from os import path
4+
5+
here = path.abspath(path.dirname(__file__))
6+
7+
# Get the long description from the README file
8+
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
9+
long_description = f.read()
10+
11+
setup(
12+
name='mljar',
13+
version='0.0.1',
14+
description='Python wrapper over MLJAR API',
15+
long_description=long_description,
16+
url='https://github.com/mljar/mljar-api-python',
17+
author='Piotr Plonski',
18+
author_email='contact@mljar.com',
19+
license='Apache-2.0',
20+
packages=['mljar'],
21+
install_requires=['requests']
22+
)

0 commit comments

Comments
 (0)