From a0c9676c78508b706272e22bbafa8c9dc6950152 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Sat, 14 Aug 2021 21:30:49 +0200 Subject: [PATCH] format the setup call --- setup.py | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 6e43b53..0e66ace 100644 --- a/setup.py +++ b/setup.py @@ -53,14 +53,18 @@ class build_py(_build_py): _build_py.run(self) setup( - name='Arrival MANager', - version='0.1.0', - packages=[ 'aman' ], - namespace_packages=[ 'aman' ], - description='AMAN optimization backend', - author='Sven Czarnian', - author_email='devel@svcz.de', - license='GPLv3', + name = 'Arrival MANager', + version = '0.1.0', + packages = [ + 'aman', + 'aman.com', + 'aman.tools' + ], + namespace_packages = [ 'aman' ], + description = 'AMAN optimization backend', + author = 'Sven Czarnian', + author_email = 'devel@svcz.de', + license = 'GPLv3', cmdclass = { 'clean': clean, 'build_py': build_py }, install_requires=[ 'setuptools',