Add setup.py to make genconfdrv installable
This commit is contained in:
parent
7c2aca795a
commit
c9416f8604
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name='genconfdrv',
|
||||
version='0.1.0',
|
||||
description='',
|
||||
author='Sebastian Lohff',
|
||||
author_email='seba@someserver.de',
|
||||
url='https://git.someserver.de/seba/genconfdrv/',
|
||||
python_requires='>=3.5',
|
||||
packages=['genconfdrv'],
|
||||
install_requires=['fs'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'genconfdrv = genconfdrv.genconfdrv:main'
|
||||
]
|
||||
},
|
||||
)
|
Loading…
Reference in New Issue