-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 879 Bytes
/
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
import re
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = re.search('^__version__ *= *"(.*)"',
open('pintools/pintools.py').read(), re.M).group(1)
setuptools.setup(
name="pintools",
version=version,
author="Patrick Harris",
description="Tools importing links from various services to Pinboard",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/patrickleweryharris/pintools",
packages=["pintools"],
entry_points={"console_scripts": ['pintools = pintools.pintools:main']},
install_requires=["pinboard", "praw", "PyGithub"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
],
python_requires='>=3.5',
)