You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
736 B
33 lines
736 B
2 years ago
|
from setuptools import setup, find_packages
|
||
|
|
||
|
|
||
|
def readme():
|
||
|
with open("README.md") as f:
|
||
|
return f.read()
|
||
|
|
||
|
|
||
|
setup(
|
||
|
name='ankimaker',
|
||
|
version='0.0.4',
|
||
|
description='Makes anki with files',
|
||
|
url="https://git.lgoon.xyz/gabriel/ankimaker",
|
||
|
license="BSD-3-Clause",
|
||
|
license_files='LICENSE',
|
||
|
packages=find_packages('src', include=['ankimaker*']),
|
||
|
package_dir={"": "src"},
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'ankimaker=ankimaker.cli:main',
|
||
|
]
|
||
|
},
|
||
|
include_package_data=True,
|
||
|
long_description=readme(),
|
||
|
install_requirements=[
|
||
|
"click",
|
||
|
"genanki",
|
||
|
"pandas",
|
||
|
"pyyaml",
|
||
|
],
|
||
|
long_description_content_type='text/markdown',
|
||
|
)
|