forked from gokceneraslan/dietnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.39 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
from setuptools import setup
from subprocess import check_output, CalledProcessError
try:
num_gpus = len(check_output(['nvidia-smi', '--query-gpu=gpu_name',
'--format=csv']).decode().strip().split('\n'))
tf = 'tensorflow-gpu>1.1' if num_gpus > 1 else 'tensorflow'
except (CalledProcessError, FileNotFoundError):
tf = 'tensorflow>=1.1'
setup(
name='dietnet',
version='0.1',
description='A program to fit MLPs to high dimensional data',
author='Gokcen Eraslan',
author_email="[email protected]",
packages=['dietnet'],
install_requires=[tf,
'numpy>=1.7',
'six>=1.10.0',
'plinkio', #for preprocessing
'pandas', #for preprocessing
'scikit-learn'], #only for k-fold and train/valid/test split
url='https://github.com/gokceneraslan/dietnet',
entry_points={
'console_scripts': [
'dietnet = dietnet.__main__:main'
]},
license='Apache License 2.0',
classifiers=['License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'],
)