-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.01 KB
/
setup.py
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
27
28
29
30
31
32
33
34
35
from setuptools import find_packages, setup
extras_require = {
"dev": ["pre-commit", "black", "isort"],
"test": [],
}
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="Feedly2Instapaper",
version="0.1.5",
data_files=[".env-example"],
packages=find_packages(exclude=["tests", "tests.*"]),
url="https://github.com/Barabazs/Feedly2Instapaper",
license="MIT",
author="Barabazs",
author_email="",
description='Feedly2Instapaper adds your "Saved for later" entries to Instapaper and removes those entries in Feedly.',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"instapaper==0.4",
"feedly-client==0.25",
"python-dotenv==0.21.0",
],
extras_require=extras_require,
)