add the long description

This commit is contained in:
Sven Czarnian
2021-08-14 21:31:06 +02:00
parent a0c9676c78
commit 59e458c70b

View File

@@ -52,6 +52,9 @@ class build_py(_build_py):
generateProtobuf('src/protobuf/BaseTypes.proto') generateProtobuf('src/protobuf/BaseTypes.proto')
_build_py.run(self) _build_py.run(self)
with open('README.md', 'r') as f:
longDescription = f.read()
setup( setup(
name = 'Arrival MANager', name = 'Arrival MANager',
version = '0.1.0', version = '0.1.0',
@@ -62,6 +65,7 @@ setup(
], ],
namespace_packages = [ 'aman' ], namespace_packages = [ 'aman' ],
description = 'AMAN optimization backend', description = 'AMAN optimization backend',
long_description = longDescription,
author = 'Sven Czarnian', author = 'Sven Czarnian',
author_email = 'devel@svcz.de', author_email = 'devel@svcz.de',
license = 'GPLv3', license = 'GPLv3',