-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
46 lines (37 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
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python3
# flake8: noqa
from os.path import dirname, realpath
from setuptools import find_packages, setup, Distribution
import setuptools.command.build_ext as _build_ext
import subprocess
def _read_requirements_file():
req_file_path = '%s/requirements.txt' % dirname(realpath(__file__))
with open(req_file_path) as f:
return [line.strip() for line in f]
class build_ext(_build_ext.build_ext):
def run(self):
try:
import tensorflow
except ImportError:
subprocess.check_call(['pip', 'install', 'tensorflow>=0.11.0'])
try:
import gym
except ImportError:
subprocess.check_call(
['pip', 'install',
'git+https://github.com/openai/gym.git@'
'93d554bdbb4b2d29ff1a685158dbde93b36e3801#egg=gym'])
class BinaryDistribution(Distribution):
def has_ext_modules(self):
return True
setup(
name='flow',
version='0.1.0',
distclass=BinaryDistribution,
cmdclass={"build_ext": build_ext},
packages=find_packages(),
install_requires=_read_requirements_file(),
# install_requires=['tensorflow'],
# dependency_links = ['git+ssh://github.com/openai/gym.git'],
zip_safe=False,
)