aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..a62a99e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,18 @@
+import setuptools
+
+with open("README.md", "r") as readme:
+ long_description = readme.read()
+
+setuptools.setup(
+ name="bcst",
+ version="0.0.1",
+ scripts=['bcst'],
+ author="Loic Guegan",
+ author_email="manzerbredes@mailbox.org",
+ description="A web browser start page generator.",
+ long_description=long_description,
+ url="https://gitlab.com/manzerbredes/bcst",
+ install_requires=["jinja2"],
+ packages=setuptools.find_packages(),
+ classifiers=["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"])
+