forked from J-E-J-S/autograph-obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 794 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
from setuptools import setup, find_packages
exec(open('autographObsidian/__init__.py').read())
DESCRIPTION = 'Automatic knowledge graph generation.'
LONG_DESCRIPTION = 'Make graphs for obsidian.md through mining scientific literature.'
# Setting up
setup(
name="autograph-obsidian",
version= __version__ ,
author="James Sanders",
author_email="[email protected]",
url = 'https://github.com/J-E-J-S/autograph-obsidian',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
'click==7.1.2',
'pygetpapers==1.2.5'
],
entry_points = {
'console_scripts':['autograph=autographObsidian.autograph:cli']
}
)