-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (33 loc) · 1.24 KB
/
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
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='metallograph_segmentation',
version='0.1.0',
author='TBD',
author_email='[email protected]',
packages=[*find_packages(".")],
scripts=['metallograph_segmentation/models/usss/train.py',
'metallograph_segmentation/models/sm/train.py',
'metallograph_segmentation/models/sm/inference.py',
'metallograph_segmentation/models/sm/train_single_model.py',
'metallograph_segmentation/models/multiview/train.py',
'metallograph_segmentation/models/multiview/trainK3.py',
'metallograph_segmentation/models/stacking/train.py',
'metallograph_segmentation/models/stacking/trainK3.py'],
url='https://github.com/ari-dasci/S-metallograph-segmentation',
license='LICENSE',
description='Code for semantic segmentation models and techniques applied to metal microstructures, in collaboration with ArcelorMittal',
long_description=open('README.md').read(),
install_requires=[
"torch >= 1.7.0",
"torchvision >= 0.8.0",
"opencv-python",
"tensorflow >= 2.0.0",
"scikit-learn",
"scikit-image",
"matplotlib",
"pandas",
"segmentation-models-pytorch",
"pytest",
"pkginfo >= 1.10"
],
)