-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 924 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
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
exec(open('hybrid3dunet/version.py').read())
setup(
name = 'hybrid3dunet',
packages = find_packages(),
version = __version__,
license='MIT',
description = 'Hybrid 3D Unet - Pytorch',
author = 'Jeremiah Johnson',
author_email = '[email protected]',
url = 'https://github.com/CerebralSeed/Hybrid-3D-UNet',
long_description_content_type = 'text/markdown',
keywords = [
'artificial intelligence',
'generative models'
'3d unet hybrid'
],
install_requires=[
'accelerate',
'einops',
'ema-pytorch',
'pillow',
'torch',
'torchvision',
'tqdm',
'pandas'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)