-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.05 KB
/
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
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fd:
long_description = fd.read()
setup(
name='maper',
use_scm_version=True,
author='chrstphr',
author_email='[email protected]',
description='CLI organize PDFs by attaching bibtex metadata',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/chr5tphr/maper',
packages=find_packages(include=['maper*']),
install_requires=[
'click',
'pikepdf>=3.0.0b3',
'requests',
],
setup_requires=[
'setuptools_scm',
],
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={
'console_scripts': ['maper=maper.__main__:entry']
}
)