-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 884 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
#Following https://uoftcoders.github.io/studyGroup/lessons/python/packages/lesson/
#Look here https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package
exec(open('denpy/version.py').read())
petra_requires = ['h5py', 'pandas']
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='denpy',
url='https://github.com/kulvait/KCT_denpy',
author='Vojtech Kulvait',
author_email='[email protected]',
# Needed to actually package something
packages=['denpy'],
# Needed for dependencies
install_requires=['numpy','pydicom'] + petra_requires,
# *strongly* suggested for sharing
version=__version__,
# The license can be anything you like
license='GPL3',
description='Python package for processing various tomographic data and DEN format.',
)