-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 711 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from pathlib import Path
from setuptools import setup, find_packages
short_description = (
"""Personal email news feed for blogs and other websites which don't provide RSS"""
)
long_description = Path("./README.md").read_text("utf8").strip()
setup(
name="feed",
version=Path("./VERSION").read_text("utf8").strip(),
description=short_description,
long_description=long_description,
url="https://github.com/mischkew/newsfeed",
author="Sven Mischkewitz",
author_email="sven.mkw@gmail.com",
license="MIT License",
packages=find_packages(),
install_requires=["beautifulsoup4>=4.9.1,<5"],
extras_require={"dev": ["ptvsd>=4.3.2,<5"]},
include_package_data=True,
)