-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
41 lines (37 loc) · 1.4 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
35
36
37
38
39
40
41
import os
from setuptools import setup, find_packages
def src(pth):
return os.path.join(os.path.dirname(__file__), pth)
# Project description
descr = 'RockGAN'
setup(
name="rockgan", # Choose your package name
description=descr,
long_description=open(src('README.md')).read(),
keywords=['GAN',
'deep learning',
'porous-media'],
classifiers=[
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Mathematics'
],
author='Miguel Corrales, Muhammad Izzatulah ,Matteo Ravasi',
install_requires=['numpy >= 1.22.3',
'torch >= 1.12.0',
'scipy >= 1.7.3',
'tqdm >= 4.64.0',
'porespy >= 2.0',
'setuptools >= 61.2.0',
'openpnm >= 2.8.0',
'scikit-image >= 0.19.0',
'scikit-learn >= 1.0.1',
'quantimpy >= 0.4.6'],
packages=find_packages(exclude=['pytests']),
use_scm_version=dict(root='.',
relative_to=__file__,
write_to=src('rockgan/version.py')),
setup_requires=['setuptools_scm'],
)