1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-30 02:23:54 +00:00
bramw_baserow/changelog/setup.py
2023-02-10 10:25:49 +00:00

18 lines
374 B
Python

#!/usr/bin/env python
import os
from setuptools import find_packages, setup
PROJECT_DIR = os.path.dirname(__file__)
setup(
name="changelog",
url="https://baserow.io",
author="Bram Wiepjes (Baserow)",
author_email="bram@baserow.io",
platforms=["linux"],
package_dir={"": "src"},
packages=find_packages("src"),
include_package_data=True,
)