Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
Fix setup tool settings concerning namespace package
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticfall committed Jan 10, 2021
1 parent af4cc1f commit 69ff2f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="alleycat-reactive",
version="0.4.6",
version="0.4.7",
author="Xavier Cho",
author_email="[email protected]",
description="A simple Python library to provide an API to implement the Reactive Object Pattern (ROP).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mysticfall/alleycat-reactive",
packages=find_packages(),
packages=find_namespace_packages(include=["alleycat.*"]),
install_requires=["returns==0.15.0", "rx==3.1.1"],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 69ff2f2

Please sign in to comment.