]> git.armaanb.net Git - lightcards.git/blob - setup.py
Restructure root and remove Makefile
[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.4.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         "Development Status :: 4 - Beta",
24         "Intended Audience :: Other Audience",
25         "Environment :: Console :: Curses",
26         "License :: OSI Approved :: MIT License",
27         "Topic :: Utilities"
28     ],
29 )