-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·27 lines (23 loc) · 976 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author: atekawade
"""
from setuptools import setup, find_packages
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='tomo2mesh',
url='https://github.com/aniketkt/Tomo2Mesh',
author='Aniket Tekawade, Yashas Satapathy, Viktor Nikitin',
author_email='atekawade@anl.gov',
# Needed to actually package something
packages= ['tomo2mesh', 'tomo2mesh.fbp', 'tomo2mesh.misc', 'tomo2mesh.structures', 'tomo2mesh.unet3d', 'tomo2mesh.projects', 'tomo2mesh.porosity'],
# Needed for dependencies
install_requires=['numpy', 'pandas', 'scipy', 'h5py', 'matplotlib', 'scikit-image',\
'tqdm', 'ipython', 'seaborn',\
'pandas', 'tifffile'],
version=open('VERSION').read().strip(),
license='BSD',
description='Toolkit for reconstructing tomography data as a polygonal mesh',
# long_description=open('README.md').read(),
)