-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (20 loc) · 758 Bytes
/
setup.py
File metadata and controls
27 lines (20 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
import os
FEEDWATER_VERSION='0.1.3'
with open("README.md", "r", encoding="utf-8") as readme_file:
README = readme_file.read()
setup(
name='feedwater',
version=FEEDWATER_VERSION,
url="https://github.com/mglambda/feedwater",
author="Marius Gerdes",
author_email="integr@gmail.com",
description="Spawn a process and feed data into its stdin continuously and concurrently, reading output whenever you want without blocking.",
long_description=README,
long_description_content_type="text/markdown",
license_files=["LICENSE"],
scripts=[],
packages=find_packages(include=['feedwater']),
package_data={"feedwater":["py.typed"]},
install_requires=["psutil"]
)