12 lines
216 B
Python
12 lines
216 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='strafesnet',
|
||
|
version='1',
|
||
|
packages=['strafesnet'],
|
||
|
license='LICENSE.txt',
|
||
|
description='StrafesNET python grpc modules',
|
||
|
install_requires=[
|
||
|
"grpcio",
|
||
|
],
|
||
|
)
|