Browse Source

add the long description

Sven Czarnian 3 years ago
parent
commit
59e458c70b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      setup.py

+ 4 - 0
setup.py

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