]> git.armaanb.net Git - lightcards.git/blob - setup.py
Add reverse option
[lightcards.git] / setup.py
1 from setuptools import setup
2
3 setup(
4     name="lightcards",
5     version="0.2.0",
6     description="Markdown flashcards",
7     url="https://sr.ht/~armaan/lightcards",
8     author="Armaan Bhojwani",
9     author_email="me@armaanb.net",
10     license="MIT",
11     packages=["lightcards"],
12     install_requires=["beautifulsoup4", "markdown"],
13     classifiers=[
14         "Development Status :: 4 - Beta",
15         "Intended Audience :: Other Audience",
16         "Environment :: Console :: Curses",
17         "License :: OSI Approved :: MIT License",
18         "Topic :: Utilities"
19     ],
20 )
21