blob: a62a99e6bd791c26662d109a245694fa115f5b47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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+)"])
|