Created package skeleton

This commit is contained in:
Cyprian Laskowski 2021-09-09 14:46:22 +02:00
parent bec6b4ef7f
commit 0669f68a8d
4 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
*.pyc

View File

2
conversion_utils/test.py Normal file
View File

@ -0,0 +1,2 @@
def hello_world():
print('Hello world!')

10
setup.py Normal file
View File

@ -0,0 +1,10 @@
from setuptools import setup
setup(name='conversion_utils',
version='0.1',
description='CJVT conversion utilities',
url='https://gitea.cjvt.si/generic/conversion_utils',
author='Cyprian Laskowski',
author_email='cyp@cjvt.si',
packages=['conversion_utils'],
zip_safe=True)