-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (28 loc) · 1.06 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
from setuptools import setup
import sys
# The argparse module was introduced in python 2.7 or python 3.2
REQUIRES = ["argparse"] if sys.version[:3] in ('2.6', '3.0', '3.1') else []
REQUIRES = REQUIRES + ["wand>=0.4.0"]
setup(
version='0.0.1',
name="anki-slides-import",
author="Utkarsh Upadhyay",
author_email="musically.ut@gmail.com",
description = "Convert text notes and slides into an Anki deck.",
license="MIT",
keywords="anki slides deck import",
install_requires=REQUIRES,
url="https://github.com/musically-ut/anki-slides-import",
packages=["slidesimport"],
entry_points={ "console_scripts": [ "slides2anki = slidesimport.slidesimport:run" ]},
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Natural Language :: English"
],
)