Skip to content

Commit

Permalink
163 fix broken docs creation (#164)
Browse files Browse the repository at this point in the history
* Trying to get readthedocs to work with poetry

* Bringing back setup.py for readthedocs

* Add explanation to setup file
  • Loading branch information
PaulSchweizer authored Jul 9, 2022
1 parent 45ee91c commit 96ee951
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
"""The setup file only exists to be able to build the docs on readthedocs!"""
from setuptools import find_packages, setup

with open("README.md") as stream:
long_description = stream.read()

REQUIREMENTS = [
"ascii-canvas>=1.2.2",
"ordereddict>=1.1",
"strip-hints>=0.1.7",
'futures; python_version == "2.7"',
]

setup(
name="flowpipe",
version="0.9.0",
author="Paul Schweizer",
author_email="[email protected]",
description="Lightweight flow-based programming framework.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PaulSchweizer/flowpipe",
packages=find_packages(),
install_requires=REQUIREMENTS,
classifiers=[
"Programming Language :: Python",
],
)

0 comments on commit 96ee951

Please sign in to comment.