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:
parent
f0bcf744e9
commit
c1a3652e59
1 changed files with 2 additions and 2 deletions
|
@ -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 = [
|
||||
|
|
Loading…
Add table
Reference in a new issue