Add new subfolder to match package structure

This commit is contained in:
Rasmus Vester Thøgersen 2021-09-09 15:36:22 +02:00
parent 04c8b05df8
commit 2c306003bb
8 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1 @@
from . import test

2
beamtime/xanes/test.py Normal file
View file

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

11
setup.py Normal file
View file

@ -0,0 +1,11 @@
from setuptools import setup, find_packages
setup(name='beamtime',
version='0.1',
description='Package for process and analysis of beamtime data from SNBL',
url='http://github.uio.no/rasmusvt/beamtime',
author='Rasmus Vester Thøgersen, Halvor Høen Hval',
author_email='rasmusvt@smn.uio.no',
license='MIT',
packages=find_packages(),
zip_safe=False)

View file