-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (27 loc) · 864 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
28
29
30
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs]
setup(
name='archivy_hn',
version='0.5.0',
author="Uzay-G",
author_email="[email protected]",
description=(
"Archivy extension to sync upvoted posts from your hn account to your archivy instance."
),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
packages=find_packages(),
install_requires=install_requires,
entry_points='''
[archivy.plugins]
hn-sync=archivy_hn:hn_sync
'''
)