This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix setup tool settings concerning namespace package
- Loading branch information
1 parent
af4cc1f
commit 69ff2f2
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|