-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (29 loc) · 1016 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import find_namespace_packages, setup
with open("README.md", "r") as rm:
readme_md = rm.read()
with open("requirements.txt") as rq:
requirements_txt = rq.read().splitlines()
setup(
name="jinja_flowbite",
version="0.4.dev14",
platforms="any",
description="Flowbite-Based Jinja Components",
long_description=readme_md,
long_description_content_type="text/markdown",
keywords="python flask jinja flowbite htmx",
url="https://github.com/schaveyt/jinja-flowbite",
author="Todd Schavey",
author_email="[email protected]",
license="MIT",
python_requires=">=3.9",
install_requires=requirements_txt,
packages=find_namespace_packages(where="src"),
package_dir={"": "src"},
package_data={
"jinja_flowbite.jinja_flowbite.controls": ["*.jinja"],
"jinja_flowbite.jinja_flowbite.icons": ["*.jinja"],
"jinja_flowbite.jinja_flowbite.layouts": ["*.jinja"],
},
classifiers=[],
include_package_data=True,
)