1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

python: use setuptools.find_namespace_packages

This commit is contained in:
Steffen Vogel 2020-06-07 23:09:12 +02:00
parent f0bcf744e9
commit c1a3652e59

View file

@ -1,5 +1,5 @@
import os
from setuptools import setup
from setuptools import setup, find_namespace_packages
from glob import glob
with open('README.md') as f:
@ -14,7 +14,7 @@ setup(
license = 'GPL-3.0',
keywords = 'simulation power system real-time villas',
url = 'https://git.rwth-aachen.de/acs/public/villas/VILLASnode',
packages = [ 'villas.node' ],
packages = find_namespace_packages(include=['villas.*']),
long_description = long_description,
long_description_content_type = 'text/markdown',
classifiers = [