format the setup call

This commit is contained in:
Sven Czarnian
2021-08-14 21:30:49 +02:00
vanhempi b92f437fcb
commit a0c9676c78

Näytä tiedosto

@@ -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',