]> git.armaanb.net Git - lightcards.git/blob - setup.py
Change PyPI classifiers
[lightcards.git] / setup.py
1 from setuptools import setup
2 from os import path
3
4 pwd = path.abspath(path.dirname(__file__))
5 with open(path.join(pwd, "README.md"), encoding="utf-8") as f:
6     long_description = f.read()
7
8 setup(
9     name="lightcards",
10     version="0.6.0",
11     description="Terminal flashcards from Markdown",
12     long_description=long_description,
13     long_description_content_type="text/markdown",
14     url="https://sr.ht/~armaan/lightcards",
15     author="Armaan Bhojwani",
16     author_email="me@armaanb.net",
17     license="MIT",
18     packages=["lightcards"],
19     install_requires=["beautifulsoup4", "markdown"],
20     data_files=[("man/man1", ["man/lightcards.1"])],
21     scripts=['bin/lightcards'],
22     classifiers=[
23         "Intended Audience :: Education",
24         "Environment :: Console :: Curses",
25         "License :: OSI Approved :: MIT License",
26         "Topic :: Education"
27     ],
28 )