-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 777 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 777 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
from setuptools import setup
with open("README.md", "r") as h:
README = h.read()
setup(
name="nbviewerbot",
version="0.1.0",
description="Convert GitHub Jupyter Notebook links on Reddit to nbviewer",
long_description=README,
long_description_content_type="text/markdown",
author="John Paton",
author_email="john@johnpaton.net",
url="https://github.com/JohnPaton/nbviewerbot",
packages=["nbviewerbot"],
install_requires=["praw", "bs4", "python-dotenv", "click", "backoff"],
python_requires=">=3.4",
entry_points={
"console_scripts": ["nbviewerbot = nbviewerbot.nbviewerbot:cli"]
},
include_package_data=True,
package_data={"nbviewerbot": [".env", ".env_template", "resources.d/*"]},
zip_safe=True,
)