Add new subfolder to match package structure
This commit is contained in:
parent
04c8b05df8
commit
2c306003bb
8 changed files with 14 additions and 0 deletions
1
beamtime/xanes/__init__.py
Normal file
1
beamtime/xanes/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
from . import test
|
||||
2
beamtime/xanes/test.py
Normal file
2
beamtime/xanes/test.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
def test_func():
|
||||
print('Hello world!')
|
||||
11
setup.py
Normal file
11
setup.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue