mirror of
https://github.com/zoriya/Autopipe.git
synced 2025-12-06 02:56:09 +00:00
25 lines
764 B
Python
25 lines
764 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="autopipe",
|
|
version="0.0.3",
|
|
author="Zoe Roux",
|
|
author_email="zoe.roux@sdg.moe",
|
|
description="A tool that allow one to create pipeline of automatic data processing.",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/AnonymusRaccoon/Autopipe",
|
|
scripts=["./bin/autopipe"],
|
|
packages=setuptools.find_packages(),
|
|
install_requires=["requests", "feedparser"],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|