Files
Autopipe/setup.py
Zoe Roux e75a589182 Rebase
2021-04-29 00:36:10 +02:00

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',
)