diff options
author | Vee9ahd1 <[email protected]> | 2019-05-11 17:46:21 -0400 |
---|---|---|
committer | Vee9ahd1 <[email protected]> | 2019-05-11 17:46:21 -0400 |
commit | 560f86d452277084a1be04fbc4c0e8c5f1206ff5 (patch) | |
tree | 486c8499444f25faca0b8d20e336f47d678f32f7 /setup.py | |
parent | 24d5916a72a73419a5e23521854f474e792422d8 (diff) |
basic testing system
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -17,5 +17,9 @@ setuptools.setup( "Programming Language :: Python :: 3", "License :: OSI Approved :: GPL", "Operating System :: OS Independent", - ], + ],# TODO: additional classifiers needed + entry_points={ + 'console_scripts': ['gantools=gantools.cli:main'], + }, + test_suite='test', ) |