This repository has been archived by the owner on Mar 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
48 lines (42 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
from os import path
from codecs import open as codec_open
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with codec_open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name="ankdown",
version="0.7.1",
description="A utility for converting Markdown into Anki cards",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/benwr/ankdown",
author="Ben Weinstein-Raun",
author_email="b@w-r.me",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
],
keywords="anki spaced-repetition markdown math latex",
packages=find_packages(),
package_data={'':['*.css']},
install_requires=['genanki>=0.6.3', 'misaka>=2.1.0', 'docopt>=0.6.2', 'houdini.py>=0.1.0', 'Pygments>=2.4.0'],
entry_points={
"console_scripts": [
"ankdown=ankdown.ankdown:main"
]
}
)