agtest/setup.py

13 lines
209 B
Python
Raw Normal View History

2021-10-01 17:33:51 +00:00
from setuptools import setup
setup(
name="agtest",
version="0.1.0",
packages=["agtest"],
entry_points={
'console_scripts': [
'agt = agtest.driver.run',
],
},
)