]> git.armaanb.net Git - lightcards.git/blobdiff - setup.py
Add setup.py, and make into actual Python module
[lightcards.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..6b7eb99
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+from setuptools import setup
+
+setup(
+    name="lightcards",
+    version="0.0.0",
+    description="Markdown flashcards",
+    url="https://sr.ht/~armaan/lightcards",
+    author="Armaan Bhojwani",
+    author_email="me@armaanb.net",
+    license="MIT",
+    packages=["lightcards"],
+    install_requires=["beautifulsoup4", "markdown"],
+    classifiers=[
+        "Development Status :: 2 - Pre-Alpha",
+        "Intended Audience :: Other Audience",
+        "Environment :: Console :: Curses",
+        "License :: OSI Approved :: MIT License",
+        "Topic :: Utilities"
+    ],
+)
+