Skip to content

Commit

Permalink
Add setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed Oct 24, 2017
1 parent d6d0dbf commit f9a0f98
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from setuptools import setup
from pip.download import PipSession
from pip.req import parse_requirements

setup(
name="wekanapi",
description="Wekan Python API client",
version="0.0.1",
packages=["wekanapi"],
install_requires=[str(requirement.req) for requirement in parse_requirements('requirements.txt', session=PipSession())])

2 changes: 1 addition & 1 deletion src/wekanapi.py → src/wekanapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import requests
from models import Board
from .models import Board


class WekanApi:
Expand Down
File renamed without changes.

0 comments on commit f9a0f98

Please sign in to comment.