Created package skeleton
This commit is contained in:
parent
bec6b4ef7f
commit
0669f68a8d
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -0,0 +1 @@
|
|||
*.pyc
|
0
conversion_utils/__init__.py
Normal file
0
conversion_utils/__init__.py
Normal file
2
conversion_utils/test.py
Normal file
2
conversion_utils/test.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
def hello_world():
|
||||
print('Hello world!')
|
10
setup.py
Normal file
10
setup.py
Normal 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)
|
Loading…
Reference in New Issue
Block a user