New setup

This commit is contained in:
itzaname 2022-07-17 04:29:39 -04:00
parent 55098b2abc
commit 3f96a33a37
16 changed files with 12 additions and 6 deletions

View File

@ -1,6 +0,0 @@
[project]
name = "strafesnet"
version = "1"
description = "Python grpc files"
requires-python = ">=3.7"

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
from setuptools import setup
setup(
name='strafesnet',
version='1',
packages=['strafesnet'],
license='LICENSE.txt',
description='StrafesNET python grpc modules',
install_requires=[
"grpcio",
],
)