Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1from setuptools import setup 2 3setup( 4 name="flatten_references_graph", 5 version="0.1.0", 6 author="Adrian Gierakowski", 7 packages=["flatten_references_graph"], 8 install_requires=[ 9 "igraph", 10 "toolz" 11 ], 12 entry_points={ 13 "console_scripts": [ 14 "flatten_references_graph=flatten_references_graph.__main__:main" 15 ] 16 } 17)