-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 813 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
from setuptools import setup, find_packages
def readme():
with open("README.rst", encoding='utf8') as file:
return file.read()
exec(open('litdb/_version.py').read())
setup(name='litdb',
version=__version__,
description=("Manages local YAML DB with a focus on retrieving articles "
"from Crossref."),
long_description=readme(),
author='Scott Hartley',
author_email='[email protected]',
url='https://hartleygroup.org',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'litdb = litdb:litdb',
'litdb_format = litdb:litdb_format'
]
},
install_requires=["PyYAML>=5.1", "habanero", "argparse"],
python_requires=">=3.6",
)