2021-04-10 16:09:22 +02:00

15 lines
376 B
Python

import os
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='homeschooling-be-app',
version='0.0.0',
packages=find_packages(),
include_package_data=True,
license='BSD License', # example license
description='DESCRIPTION'
)