-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (28 loc) · 875 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
setup(
name='pdf2anki',
version='0.1.3',
description='A Python package to create Anki cards from PDFs using OpenAI.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Fabio Carvalho',
author_email='hipnologo@gmail.com',
url='https://github.com/hipnologo/pdf2anki',
packages=find_packages(exclude=['pdftoanki']),
include_package_data=True,
install_requires=[
'openai>=0.27.0',
'PyPDF2>=1.26.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': [
'pdf2anki=pdf2anki.main:main',
],
},
)